[编程入门]Sn的公式求和 摘要:解题思路:列举几个数进行观察:2=0*10+2 //易得除了第一项外,其他都是前一项*10+2。因此我们也能得出相应的关系,an=(an-1)*10+2,最后循环即可 …… 题解列表 2024年10月27日 0 点赞 0 评论 210 浏览 评分:0.0
for循环,数组的运用。 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; int Sn=0; int a[100]…… 题解列表 2024年10月24日 0 点赞 0 评论 105 浏览 评分:9.9
Sn的公式求和(while循环求解) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n;int main(){ cin>>n;//输入n int sum=0;//计算总和…… 题解列表 2024年04月11日 0 点赞 0 评论 94 浏览 评分:0.0
Sn的公式求和(c++解决办法) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int sn=0; …… 题解列表 2024年01月27日 0 点赞 0 评论 110 浏览 评分:9.9
利用数学公式求解Sn的公式求和 摘要:解题思路:通过观察题目得知,题中的2,22,222......这每一项均满足等比数列前n项和的要求以222为例:222=2*10^0+2*10^1+2*10^2=2+20+200故我们可以通过等比数列…… 题解列表 2024年01月17日 0 点赞 0 评论 51 浏览 评分:0.0
利用数学公式求和 摘要:解题思路:由题易知,此题为求解前n项和,但其前n项和不是等比或等差数列,通过观察得知,其中每一项(2,22,222...)均为等比数列前n项和。即:222=2*10^0+2*10^1+2*10^2=2…… 题解列表 2024年01月16日 0 点赞 0 评论 187 浏览 评分:9.9
函数+递归求解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int sum=0;int f(int x){ int t=x;//(保存一下x的值…… 题解列表 2023年11月19日 0 点赞 0 评论 95 浏览 评分:9.9
新手简单易懂 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int i, n; int t = 1; int k…… 题解列表 2023年09月03日 0 点赞 0 评论 176 浏览 评分:9.9
1013: [编程入门]Sn的公式求和 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int n,ans = 2,s;int main(){ cin>>n; for(int i…… 题解列表 2023年07月16日 0 点赞 0 评论 129 浏览 评分:9.9
[编程入门]Sn的公式求和 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,Sn=2,a=2; cin>>n; for(int…… 题解列表 2023年05月29日 0 点赞 0 评论 59 浏览 评分:0.0