题解 1000: [竞赛入门]简单的a+b

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1000:简单的a+b

摘要:参考代码:#include<iostream> using namespace std; int main() {     int a,b;     while(cin>>a>>b)cout……

简单的a+b

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int a,b; cin>>a>>b; int c=a+b; cou……

直接提交,不用任何操作

摘要:当你点开这个题目,你就可以提交了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。……

简单的a+b(C++代码)

摘要:解题思路:利用while循环判断输入的数据注意事项:主要换行操作参考代码:#include<iostream>using namespace std;int main(){    int a,b;  ……

简单的a+b【C++代码题解】

摘要:解题思路: 计算两个数的加法和,先定义变量。。。。注意事项:参考代码:```C++#include <iostream```……

简单的 a + b

摘要: #include using namespace std; int main() { int a, b; while (cin >……