If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
public class Multiples {
public static void main(String args[]){
int sum=0;
for(int i=3;i<1000;i++){
if((i%3==0&&i%15!=0)||(i%5==0&&i%15!=0)||(i%15==0)){
sum+=i;
}
}
System.out.println("i="+sum);
}
}
|
本文提供了一个Java程序,用于计算并输出所有小于1000的自然数中,能被3或5整除的数之和,结果为233168。
1810

被折叠的 条评论
为什么被折叠?



