题解 1852: 求1+2+3+...+n的值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1852: 求1+2+3+...+n的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;longlongsum(longlongn){&nbsp;&……

1852: 求1+2+3+...+n的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;typedeflonglongll;//自定义//求1+2+3+......……

1852: 求1+2+3+...+n的值

摘要:解题思路:用for循环,从1累加到n。注意事项:n<=1000000000,变量得开longlong。参考代码:#include<bits/stdc++.h>usingnamespa……