A+B for Input-Output Practice (II) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",&a,&b); printf…… 题解列表 2017年07月12日 0 点赞 0 评论 806 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" int main() { int n; scanf("%d",&n); while(n>0) { int a,b; s…… 题解列表 2017年07月28日 0 点赞 0 评论 716 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:你输入的第一个变量是控制你的后面的行数,所以,要将他放在循环的外面然后后面的每一组输入就是你的计算的a+b,这个对应于每一次for循环。注意事项:for循环的次数,别的没有什么注意的。参考代…… 题解列表 2017年09月23日 1 点赞 1 评论 1126 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",…… 题解列表 2017年10月30日 0 点赞 0 评论 710 浏览 评分:0.0
Manchester- A+B for Input-Output Practice (II) 摘要:解题思路:以要输入的次数n结束;输入一对整数,输出它们的和;注意事项:参考代码:#include<stdio.h> int main() { int a,b,n; scanf("%d"…… 题解列表 2017年11月24日 20 点赞 0 评论 1417 浏览 评分:8.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while(n--) { …… 题解列表 2017年12月13日 1 点赞 0 评论 589 浏览 评分:0.0
WU-A+B for Input-Output Practice (II) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int n,i=0,a,b; scanf("%d",&n); while(i<n) { scanf("…… 题解列表 2017年12月15日 4 点赞 0 评论 1631 浏览 评分:8.0
快点开吧! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b ; int n,sum=0; scanf("%d",&n); while(n--) {…… 题解列表 2018年03月04日 0 点赞 0 评论 661 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:以要输入的次数n结束;输入一对整数,输出它们的和;注意事项:依然是求A+B,但它的输入数据为:21 510 20输出为:630由输入数据第一行的2,我们可以看出表示有两组数据,也就是输入一对…… 题解列表 2018年08月20日 0 点赞 0 评论 689 浏览 评分:0.0
A+B for Input-Output Practice (II) (C++代码) 摘要:#include<iostream> using namespace std; int main() { int a,b,n; cin>>n; for(int i=…… 题解列表 2018年09月28日 0 点赞 0 评论 559 浏览 评分:0.0