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