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

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

筛选

Sn的公式求和

摘要:解题思路:这道题主要是n个数相加,这个可以用到for循环,进行n次。1、2,22,222,....如何确定    我的思路是2=2*100 ,22=2*101+2 ,222=2*102+22(也就是前……

1013一行解(Python)

摘要:注意事项:要将字符串形式先转为数字(int整形)形式才能采用sum计算和参考代码:print(sum(map(int, list(map(lambda x : '2' * x, (i ……

简单的fot循环语句即可

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

规律拆分求解

摘要:解题思路:       规律拆分:            2,22 = 2*10 + 2 ,222= 22 * 10 + 2, 2222 = 222 * 10 + 2.。。。以此类推。注意事项:   ……

Sn的公式求和

摘要:解题思路:  循环+pow函数因为每个数的每一位上都是2,故联想到for循环取出每一个数将每一个数存在a中,利用for循环相加注意事项:参考代码:# include <stdio.h># includ……

Sn的公式求和

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

Sn的公式求和

摘要:解题思路:递归注意事项:参考代码:#include <stdio.h> #include <math.h> int fun(int n){  // 使用递归得到每一项数字     if(n==1……