题解 1013: [编程入门]Sn的公式求和

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

筛选

直接写就行了

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {      int i,j=0,n,Sn=0;     scanf……

Sn的公式求和C++用<cmath>库函数

摘要:解题思路:算出每一个数,然后把所有的加起来,用两个加语句注意事项:记得给sn赋初值为0参考代码:#include<iostream>#include<cmath>using namespace std……

//C++sstream流, string 转int

摘要:解题思路: n个2,可以用string.substr(n--) 来截取各个数,再利用sstream流将string转int 再累加,完成。参考代码:#include<iostream>#include……