A+B for Input-Output Practice (I)-题解(C语言代码) 摘要: #include int main() { int a,b; while(~scanf("%d%d", &a, &b)) { printf("%d\n",a+b);…… 题解列表 2020年02月06日 0 点赞 0 评论 347 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)==2) printf("%d\n",a+b); …… 题解列表 2017年11月28日 1 点赞 0 评论 681 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码)水题 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%d…… 题解列表 2019年05月18日 0 点赞 0 评论 366 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:详情黄老师ACM入门教程…… 题解列表 2017年06月10日 3 点赞 1 评论 1329 浏览 评分:2.7
1085: A+B for Input-Output Practice (I) 摘要:题目要求:输入将由一系列整数对a和b组成,用空格分隔,每行一对整数。对于每对输入整数a和b,您应该在一行中输出a和b的总和,并且在输入中每行输出一行。解题思路:对多组数据进行求和参考代码:#inclu…… 题解列表 2022年04月06日 0 点赞 0 评论 420 浏览 评分:4.7
A+B for Input-Output Practice (I) (C++代码) 摘要:解题思路:直接点提交就好了hhhhhhhh注意事项:这还要注意点什么,,大哥,你就别自己改了好吧。。参考代码:#include<iostream> using namespace std; int…… 题解列表 2017年07月28日 3 点赞 5 评论 1570 浏览 评分:4.7
LikeWater - 1085: A+B for Input-Output Practice (I) 摘要:#####第一次写英文版题目,感觉还不错,写代码的同时可以学习英语句子,保持英语水平,还是比较感兴趣的~~~~ ```cpp #include #include using namespa…… 题解列表 2023年02月27日 0 点赞 1 评论 181 浏览 评分:6.0
WU-A+B for Input-Output Practice (I) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%d…… 题解列表 2017年12月15日 2 点赞 0 评论 1608 浏览 评分:7.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要:参考代码:#include<stdio.h>int main(){ int n,m,i,sum; while(scanf("%d%d",&n,&m)!=-1){ sum=0…… 题解列表 2020年08月14日 0 点赞 3 评论 792 浏览 评分:7.3