LikeWater - 1085: A+B for Input-Output Practice (I) 摘要:#####第一次写英文版题目,感觉还不错,写代码的同时可以学习英语句子,保持英语水平,还是比较感兴趣的~~~~ ```cpp #include #include using namespa…… 题解列表 2023年02月27日 0 点赞 1 评论 181 浏览 评分:6.0
A+B for Input-Output Practice (I) (C++代码) 摘要:解题思路:直接点提交就好了hhhhhhhh注意事项:这还要注意点什么,,大哥,你就别自己改了好吧。。参考代码:#include<iostream> using namespace std; int…… 题解列表 2017年07月28日 3 点赞 5 评论 1570 浏览 评分:4.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语言代码) 摘要:详情黄老师ACM入门教程…… 题解列表 2017年06月10日 3 点赞 1 评论 1329 浏览 评分:2.7
编写题解 1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年03月19日 0 点赞 0 评论 157 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) cou…… 题解列表 2024年03月07日 0 点赞 0 评论 186 浏览 评分:0.0
A+B for Input-Output Practice (I) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b; while (cin>>a>>b) cout<<…… 题解列表 2017年11月23日 0 点赞 0 评论 732 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b))prin…… 题解列表 2021年01月30日 0 点赞 0 评论 162 浏览 评分:0.0
编写题解 1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2){ printf("%d\n…… 题解列表 2023年03月09日 0 点赞 0 评论 86 浏览 评分:0.0