在我上一个题解基础下,加上前面那个scanf就可以了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum,j,p;//注意多定义两个 scanf("…… 题解列表 2025年01月12日 0 点赞 0 评论 18 浏览 评分:0.0
下次一定好好看题再回答A+B for Input-Output Practice (V) 摘要:#include<stdio.h>int main(){ int n,d,m; scanf("%d",&n); for(int i=0; i<n; i++) { …… 题解列表 2024年12月11日 0 点赞 0 评论 71 浏览 评分:0.0
计算整数总和(新玩法) 摘要:题目描述 你的任务是计算一些整数的总和。 输入格式 输入在第一行中包含整数 N,然后是 N 行。每行都以整数 M 开头,然后 M 整数跟在同一行中。 输出格式 对于每组输入整数,您应…… 题解列表 2024年08月22日 0 点赞 0 评论 47 浏览 评分:0.0
1089A+B(5)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); while(n!=0) { int m; scanf("%d"…… 题解列表 2024年05月29日 0 点赞 0 评论 84 浏览 评分:0.0
A+B的第五种输入类型 摘要:解题思路:如下注意事项:这种题主要注意sum值的重新赋予参考代码:#include<stdio.h>int main(){ int n,m,i; int a; int sum; …… 题解列表 2024年03月15日 0 点赞 0 评论 137 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,sum=0,a,b=0; scanf ("%d",&n); for (int …… 题解列表 2023年09月24日 0 点赞 0 评论 33 浏览 评分:0.0
目前最简洁易懂示例!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 200int main(){ int n,m,i,num; int arr[N]; scanf("…… 题解列表 2023年07月26日 0 点赞 0 评论 88 浏览 评分:0.0
一个简单的方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int n; scanf("%d",&n); while(n>0) { …… 题解列表 2023年07月06日 0 点赞 0 评论 77 浏览 评分:0.0
A+B for Input-Output Practice (V) 摘要:#include<stdio.h> int main() { int a; scanf("%d",&a); int sum = 0,c; int b[a][100]; f…… 题解列表 2023年06月05日 0 点赞 0 评论 71 浏览 评分:0.0
A+B for Input-Output Practice (V)(特简单) 摘要:```c #include int main() { int n; int i = 0,j=0,sum=0; scanf("%d", &n);//n来判断循环几次 int a,m…… 题解列表 2023年05月04日 0 点赞 0 评论 108 浏览 评分:0.0