简单的a+b【C++代码题解】 摘要:解题思路: 计算两个数的加法和,先定义变量。。。。注意事项:参考代码:```C++#include <iostream```…… 题解列表 2022年10月15日 0 点赞 1 评论 210 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年02月09日 0 点赞 0 评论 167 浏览 评分:9.9
笑死,根本没动,他给的格式就是题解 摘要:解题思路:没有注意事项:没有(别自己乱写,直接用他给的格式参考代码:#include <stdio.h>int main(){ int a,b; while(~scanf("%d%d", …… 题解列表 2022年07月09日 0 点赞 0 评论 406 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:解题思路:这道题就是求几个加法等式的a+b,可以结合while循环输出就行注意事项:注意要用while循环来算参考代码:#include<iostream>//头文件using namespace s…… 题解列表 2022年04月26日 0 点赞 1 评论 1108 浏览 评分:9.9
留住了塔没留住她:[竞赛入门]简单的a+b 摘要:解题思路: 我们可以定义两个变量a和b 由于题目输入数据数量不限所以我们要用while(cin>>a>>b) cout就是输出,(a+b)就是求a+b的和 …… 题解列表 2023年04月27日 0 点赞 0 评论 146 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) { cou…… 题解列表 2023年01月08日 0 点赞 0 评论 107 浏览 评分:9.9
题解 1000: [竞赛入门]简单的a+b 摘要:###思路 `while(cin>>)`即可 ###代码 ```cpp #include using namespace std; int main() { int a,b; …… 题解列表 2024年02月06日 1 点赞 0 评论 142 浏览 评分:9.9
简单的 a + b 摘要: #include using namespace std; int main() { int a, b; while (cin >…… 题解列表 2022年10月06日 0 点赞 0 评论 173 浏览 评分:9.9
简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2022年05月15日 0 点赞 0 评论 866 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 标题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2023年02月07日 0 点赞 0 评论 106 浏览 评分:9.9