找出1000以下3和5的倍数之和

找出1000以下3和5的倍数之和,第1张

找出1000以下3和5的倍数之和

您应该对两者都使用相同的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;        }    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4953222.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存