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

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

筛选

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的公式求和

摘要:解题思路先用for循环把几个2表示出来,再用一个变量进行累加求和即可。注意事项:参考代码:n = int(input())a = 0sum = 0for i in range(n):    a = 2……