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

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

筛选

[编程入门]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]……

利用数学公式求解Sn的公式求和

摘要:解题思路:通过观察题目得知,题中的2,22,222......这每一项均满足等比数列前n项和的要求以222为例:222=2*10^0+2*10^1+2*10^2=2+20+200故我们可以通过等比数列……

利用数学公式求和

摘要:解题思路:由题易知,此题为求解前n项和,但其前n项和不是等比或等差数列,通过观察得知,其中每一项(2,22,222...)均为等比数列前n项和。即:222=2*10^0+2*10^1+2*10^2=2……

函数+递归求解

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int sum=0;int f(int x){ int t=x;//(保存一下x的值……

新手简单易懂

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int i, n; int t = 1; int k……

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

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int n,Sn=2,a=2;    cin>>n;    for(int……