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

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

筛选

Sn的公式求和

摘要:参考代码:#include#include int main() {    int n,sum=0;    scanf("%d",&n);    for(int i=0;i<n;i++){      ……

最普通的方法

摘要:解题思路注意事项:参考代码:#include<stdio.h>int main(){ int a=2,i=0,sum=0; int n; scanf("%d",&n); while(n>0) { s……

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

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