您应该对两者都使用相同的for循环,以避免重复计算两者的倍数。例如15,30 …
for(int temp =0; temp < 1000 ; temp++){ if(temp % 3 == 0){ x.add(temp); totalforthree += temp; }else if(temp % 5 == 0){ y.add(temp); totalforfive += temp; } }
欢迎分享,转载请注明来源:内存溢出
您应该对两者都使用相同的for循环,以避免重复计算两者的倍数。例如15,30 …
for(int temp =0; temp < 1000 ; temp++){ if(temp % 3 == 0){ x.add(temp); totalforthree += temp; }else if(temp % 5 == 0){ y.add(temp); totalforfive += temp; } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)