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

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

筛选

Sn的公式求和

摘要:解题思路:首先需要定义两个变量,一个变量用来存储和,sum,另一个变量用来存每次计算的结果 term,由于a的值始终为2,所以每次计算后都需要在原来的结算结果的基础上进位并加2.注意事项:参考代码:#……

Sn的公式求和

摘要:解题思路:首先,通过 scanf 函数获取用户输入的n和a。然后,使用一个循环来计算每一项的值并累加到 sum 中。每一项的值 term 通过 term = term * 10 + a 来计算,初始时……

Sn的公式求和

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

直接写就行了

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

题解1013Sn求和

摘要:解题思路:循环嵌套注意事项:参考代码:int main(){ int n = 0; int a = 2; int i = 0; int j = 0; int mid = 0; scanf("%d", ……

C语言求解Sn的公式求和

摘要:参考代码:#include <stdio.h> int main() {     int n;     int a = 2;  // a 的值     long long sum = 0;……

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

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

for循环,数组的运用。

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; int Sn=0; int a[100]……