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

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

筛选

Sn的公式求和

摘要: #include using namespace std; int main() { int n, a=2 , t,sum=0; cin ……

Sn的公式求和,递归

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int ret) { if (ret > 9) { return ret + fun(ret / 10); } els……

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

摘要:解题思路:本题的关键是如何输出 2、22、222、2222 。认真思考后我们可以得出以下规律:2=0*10+222=2*10+2222=22*10+22222=222*10+2然后只看等号右面可以得到……

注意:两次相加

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

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

摘要:一、解题思路:for()循环C参考代码:#include <stdio.h> int main(){     int n,a=2,s=0,sn=0;     scanf("%d",&n); ……