Multiples of 3 and 5
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Multiples of 3 and 5相关的知识,希望对你有一定的参考价值。
problem 1:Multiples of 3 and 5
题意:求1000以下3与5的倍数之和
代码如下:
1 #ifndef PRO1_H_INCLUDED 2 #define PRO1_H_INCLUDED 3 4 namespace pro1{ 5 int solve(){ 6 int sum=0; 7 for(int i=1;i<1000;++i) 8 if(i%3==0||i%5==0)sum+=i; 9 return sum; 10 } 11 } 12 13 #endif // PRO1_H_INCLUDED
以上是关于Multiples of 3 and 5的主要内容,如果未能解决你的问题,请参考以下文章
LightOJ 1135 - Count the Multiples of 3 线段树
Multiples of Length CodeForces
Codeforces Round #506 (Div. 3) D. Concatenated Multiples
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段