用java while循环求1-100所有能被3整除的数的和? 200
展开全部
/*
* 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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询