A+B for Input-Output Practice (V)(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],n,i,j=0,sum,m; scanf("%d",&m); while(…… 题解列表 2022年11月03日 0 点赞 0 评论 80 浏览 评分:0.0
A+B for Input-Output Practice (V)(怀氏c++) 摘要:解题思路:注意事项:注意给的数字,从头之后都是1+2+3+4+。。。。+head;用for循环累加即可参考代码: #include <iostream>using namespace std;int…… 题解列表 2022年10月25日 0 点赞 0 评论 281 浏览 评分:9.9
1089: A+B for Input-Output Practice (V) 摘要:```cpp #include using namespace std; int main() { int n,en,x,sum; cin>>n; for(int…… 题解列表 2022年08月31日 0 点赞 0 评论 194 浏览 评分:9.9
1089—————— A+B for Input-Output Practice (V) 摘要:题目:1089: A+B for Input-Output Practice (V) **题目描述** Your task is to calculate the sum of some inte…… 题解列表 2022年08月20日 0 点赞 0 评论 138 浏览 评分:0.0
题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:最开始看这个题,要想到嵌套循环,然后最开始我错了是因为sum=0没打进去,第二个变成25就是把第一个数值也加进去注意事项:参考代码:#include<iostream>using names…… 题解列表 2022年07月23日 0 点赞 0 评论 79 浏览 评分:0.0
感觉定义的m是多余的 摘要:#include<stdio.h> int main() { int m,n; scanf("%d\n",&m); while(scanf("%d",&n)!=EOF&&n!=0…… 题解列表 2022年07月18日 0 点赞 0 评论 197 浏览 评分:9.9
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:定义三个变量来保存数据注意事项:参考代码:#include<bits/stdc++.h>//c++万能头文件using namespace std;int main(){ int n; in…… 题解列表 2022年07月17日 0 点赞 0 评论 82 浏览 评分:0.0
1089: A+B for Input-Output Practice (V) 摘要:解题思路:双while注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){ int count…… 题解列表 2022年06月07日 0 点赞 0 评论 73 浏览 评分:0.0
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): #规定输入的行数 sum = 0 a = list(map(int,input(…… 题解列表 2022年06月01日 0 点赞 0 评论 212 浏览 评分:0.0
A+B for Input-Output Practice (V) 摘要:#include void main() { int a=0,b=0,i=0,k,j=0,x; scanf("%d",&x); while(x--) { scanf("%…… 题解列表 2022年05月17日 0 点赞 0 评论 138 浏览 评分:0.0