美文网首页
for循环练习,计算0~100偶数,奇数和取余数

for循环练习,计算0~100偶数,奇数和取余数

作者: 哈迪斯Java | 来源:发表于2021-09-11 14:31 被阅读0次

    取余(运算符为%)

        表达式:result = num1 % num2
    

    取余(或余数)运算符用 num1 除以 num2 ,然后返回余数作为 result。

    package Structure;

    public class ForPractice {
    public static void main(String[] args) {
    //练习计算0到100的奇数。偶数的和。
    int oddsum = 0;
    int evensum = 0;

        for (int i = 0; i <= 100; i++) {
            if (i%2!=0) {
                oddsum += i;
            }else{
                evensum+=i;
                }
        }
        System.out.println("奇数和为:"+oddsum);
        System.out.println("偶数和为:"+evensum);
    }
    

    }

    相关文章

      网友评论

          本文标题:for循环练习,计算0~100偶数,奇数和取余数

          本文链接:https://www.haomeiwen.com/subject/lubowltx.html