论作弊狂魔如何解出1013(xswl) 摘要:解题思路:直接写结果。注意事项:数字不要打错(可复制)参考代码:#include<stdio.h>int main(){ printf("24690"); return 0;}…… 题解列表 2021年08月02日 0 点赞 1 评论 203 浏览 评分:9.9
【kkky】循环遍历可得 摘要:解题思路: 由题可知,有n个数相加,同时最后一位有n个a,通过循环遍历相加可得。注意事项:参考代码:#includeusing namespace std;int main(){ …… 题解列表 2022年07月21日 0 点赞 0 评论 424 浏览 评分:9.9
[编程入门]Sn的公式求和-题解(C语言代码-递归) 摘要: #include int add(int n) { int i,j,add=0; j=1; for(i=1;i…… 题解列表 2020年10月18日 0 点赞 0 评论 456 浏览 评分:9.9
[编程入门]Sn的公式求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,t=0,i,j; scanf("%d",&n); …… 题解列表 2020年11月13日 0 点赞 0 评论 277 浏览 评分:9.9
[编程入门]Sn的公式求和-题解(C语言代码) 摘要:原题:[编程入门]Sn的公式求和 我的思路:先算出Sn中第n项,再算出第n-1项,以此类推,直到算出第1项 Sn中第n项可以通过`Sn=Sn+2*(pow(10,n))`和do-whi…… 题解列表 2020年03月09日 0 点赞 0 评论 1174 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月21日 0 点赞 0 评论 144 浏览 评分:9.9
1013: [编程入门]Sn的公式求和 摘要:```cpp #include #include using namespace std; int f(int n){ int s=0; for(int i=1;i> …… 题解列表 2023年02月25日 0 点赞 1 评论 45 浏览 评分:9.9
最简洁的Sn求和!!! 摘要:解题思路:调用math函数,将每一项a表示为2+20+200+2000......以此类推。注意事项:注意好定义以及最后一项的位数。参考代码: #include#includeint main()…… 题解列表 2022年04月05日 0 点赞 0 评论 171 浏览 评分:9.9
Sn的公式求和 使用for循环 摘要:解题思路:我的思路是先找到2,22,222,2222,22222.的规律,我发现前一个数乘以10再加2,便是后一个数,如2*10+2=22,22*10+2=222。再通过循环把需要的数找到和累加注意事…… 题解列表 2021年11月02日 0 点赞 0 评论 206 浏览 评分:9.9
容易理解如何解决Sn求和问题 摘要:解题思路:从第二项开始后一项为前一项的10倍后加上前一项注意事项:需要包含#include<math.h>函数参考代码:#include<stdio.h>#include<math.h>int mai…… 题解列表 2024年10月16日 0 点赞 0 评论 87 浏览 评分:9.9