【Python】如何一行解决这道题 摘要:解题思路:普通的思路注意事项:没什么注意的参考代码:print(sum(list(map(int, [i*'2' for i in range(1,int(input())+1)]))…… 题解列表 2023年11月12日 0 点赞 3 评论 509 浏览 评分:9.9
[编程入门]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
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 评论 40 浏览 评分: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
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 评论 52 浏览 评分:0.0
编程1013 题解(更适合新手宝宝体质) 摘要:解题思路:sn=前一项+2注意事项:别忘加第一项的2参考代码: #include<stdio.h>int main(){ int n; scanf_s("%d", &n); int …… 题解列表 2023年10月02日 0 点赞 0 评论 78 浏览 评分:9.9
新手简单易懂 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int i, n; int t = 1; int k…… 题解列表 2023年09月03日 0 点赞 0 评论 175 浏览 评分:9.9
优质题解 Sn求和解题思路及Java代码 摘要:解题思路:一、可以将这个看成一个数列,an代表这个是第几项,Sn代表前几项的和。 二、通过观察可以看到每一项都是上一项的10倍加2(除了第一项);例如:22=2*10+2;2…… 题解列表 2023年08月10日 1 点赞 0 评论 1764 浏览 评分:9.7
Sn的公式求和(Java) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2023年08月10日 0 点赞 0 评论 58 浏览 评分:0.0
Sn的公式求和 摘要:参考代码:#include#include int main() { int n,sum=0; scanf("%d",&n); for(int i=0;i<n;i++){ …… 题解列表 2023年07月22日 0 点赞 0 评论 100 浏览 评分:9.9