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

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

筛选

菜鸟解法 初学者 欢迎指点

摘要:解题思路:2-22为1*10+122-222为(1*10+1)*10+12222-22222为((1*10+1)*10+1)*10+1注意事项:循环时i不可为0参考代码:#include<stdio.……

a = a * 10 + 2; Sn = Sn + a;

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

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

摘要:解题思路:列举几个数进行观察:2=0*10+2     //易得除了第一项外,其他都是前一项*10+2。因此我们也能得出相应的关系,an=(an-1)*10+2,最后循环即可             ……

Sn的公式求和

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

Sn的公式求和

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