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

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

筛选

for循环,数组的运用。

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; int Sn=0; int a[100]……

新手简单易懂

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int i, n; int t = 1; int k……

[编程入门]Sn的公式求和

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

最普通的方法

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

C语言求解Sn的公式求和

摘要:参考代码:#include <stdio.h> int main() {     int n;     int a = 2;  // a 的值     long long sum = 0;……