用java while循环求1-100所有能被3整除的数的和?

2025-01-08 13:15:50
推荐回答(2个)
回答1:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Administrator
 */
public class NewClass {

    public static void main(String[] args) {
        int i = 1;
        int sum = 0;
        while (i <= 100) {
            if (i % 3 == 0) {
                sum = sum + i;
            }
            i++;
        }
        System.out.println(sum);
    }
}

答案是1683

回答2:

#include
int main()
{int i,s=0;
for(i=3;i<100;i+=3)
s+=i;
printf("%d\n",s);
return 0;
}