编程1013 题解(更适合新手宝宝体质) 摘要:解题思路:sn=前一项+2注意事项:别忘加第一项的2参考代码: #include<stdio.h>int main(){ int n; scanf_s("%d", &n); int …… 题解列表 2023年10月02日 0 点赞 0 评论 79 浏览 评分:9.9
Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sn=0; int t = 0; scanf("%d", &n); for (int i = 1;…… 题解列表 2023年10月26日 0 点赞 0 评论 53 浏览 评分:0.0
Sn公式求和记录 摘要:解题思路:用了math.h头文件里的pow()函数来求n次方注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int m=2…… 题解列表 2023年10月27日 0 点赞 0 评论 53 浏览 评分:0.0
1013c语言代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,n,a=2,s=2,sn=0; scanf("%d",&n); fo…… 题解列表 2023年11月06日 0 点赞 0 评论 41 浏览 评分:0.0
[编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a,b,Sn; b=1; a=2; Sn=0; scanf("%d",…… 题解列表 2023年11月07日 0 点赞 0 评论 77 浏览 评分:9.9
【Python】如何一行解决这道题 摘要:解题思路:普通的思路注意事项:没什么注意的参考代码:print(sum(list(map(int, [i*'2' for i in range(1,int(input())+1)]))…… 题解列表 2023年11月12日 0 点赞 3 评论 510 浏览 评分:9.9
1013:Sn的公式求和 摘要:解题思路先用for循环把几个2表示出来,再用一个变量进行累加求和即可。注意事项:参考代码:n = int(input())a = 0sum = 0for i in range(n): a = 2…… 题解列表 2023年11月17日 0 点赞 0 评论 105 浏览 评分:0.0
函数+递归求解 摘要:解题思路:注意事项:参考代码:#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
or()循环里面的表达式 摘要:解题思路:首先确定n,是有几项相加,然后利用for()循环n次进行相加;其次就是每次计算时要加的项,也就是几个2,我的方法是: 1、先定义a=0; 2、由于后一项都比前一项…… 题解列表 2023年11月28日 0 点赞 0 评论 65 浏览 评分:0.0
利用数组求解 摘要:解题思路:先将数列中每一项求出来存放在数组中,再求和计算Sn注意事项:我刚开始定义数组写成了"int s[n]={};",报错了,改成“int s[n];”就好了参考代码:#include<stdio…… 题解列表 2023年12月01日 0 点赞 0 评论 39 浏览 评分:9.9