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

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

筛选

数列(c语言)

摘要:解题思路:A=A*10+2保证每一次是上次的数值多一位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;……

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

摘要:解题思路:注意事项:参考代码:n = int(input()) s = 0 for i in range(1, n + 1):     temp = &#39;2&#39; * i     s……

大家注意坑爹审题

摘要:解题思路:一次for循环轻松解决。注意事项:注意题目要求参考代码:#include<stdio.h>int main(){ int n,i,a=0,Sn=0; scanf("%d",&n); for(……

Sn的公式求和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>                                                    ……

Sn的公式求和

摘要:解题思路:注意到2222这种东西还是用字符串来操作比较简单,再用stoi函数让string转为int就好了。参考代码:#include<iostream>#include<string>using n……