题目 1013: [编程入门]Sn的公式求和—常规求解方法 摘要:解题思路:比如n为4时,则Sn为2*10^0*4+2*10^1*3+2*10^2*2+2*10^3*1注意事项:指数用pow函数参考代码:#include<stdio.h> #include<mat…… 题解列表 2022年10月20日 0 点赞 0 评论 100 浏览 评分:0.0
规律拆分求解 摘要:解题思路: 规律拆分: 2,22 = 2*10 + 2 ,222= 22 * 10 + 2, 2222 = 222 * 10 + 2.。。。以此类推。注意事项: …… 题解列表 2022年10月22日 0 点赞 0 评论 66 浏览 评分:0.0
用while进行解题,易理解的解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); int a=0; int b=0; …… 题解列表 2022年10月23日 0 点赞 0 评论 101 浏览 评分:9.9
简单的fot循环语句即可 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main(void){ int a,n,i; int Sn; scanf("%d", &n); a = 0; Sn = 0;…… 题解列表 2022年10月25日 0 点赞 0 评论 76 浏览 评分:0.0
1013一行解(Python) 摘要:注意事项:要将字符串形式先转为数字(int整形)形式才能采用sum计算和参考代码:print(sum(map(int, list(map(lambda x : '2' * x, (i …… 题解列表 2022年11月06日 0 点赞 0 评论 227 浏览 评分:6.0
Sn的公式求和 摘要:解题思路:这道题主要是n个数相加,这个可以用到for循环,进行n次。1、2,22,222,....如何确定 我的思路是2=2*100 ,22=2*101+2 ,222=2*102+22(也就是前…… 题解列表 2022年11月09日 0 点赞 0 评论 124 浏览 评分:9.9
1013: [编程入门]Sn的公式求和(通过通项公式实现) 摘要:解题思路:这里是应用高中内容求出2 22 222 2222......的通项公式求解首先我们可以很容易知道在n =(1,2,3......)时10^n = 10,100,1000......而再减去1…… 题解列表 2022年11月19日 0 点赞 0 评论 90 浏览 评分:9.9
编写题解 1013: [编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,n,m=0,Sn=0; scanf("%d",&n); for(i=…… 题解列表 2022年11月22日 0 点赞 0 评论 56 浏览 评分:0.0
1013: [编程入门]Sn的公式求和(java代码) 摘要:解题思路:解法一:根据规律发现每一项数字都是前面一项的10倍+2(2,20+2, 220+2,.....)。解法二:把每一项数字拆开(2*100,(2*100+2*101),(2*100+2*101+…… 题解列表 2022年11月26日 0 点赞 0 评论 98 浏览 评分:0.0
Sn公式求和(C代码) 摘要:#有注释,运用一个pow函数 #include #include int main(void) { int n = 0, sum1 = 0, s…… 题解列表 2022年11月29日 0 点赞 0 评论 150 浏览 评分:9.9