> 其他 >
A+B Problem Time Limit:1000MS Memory Limit:1024K Description:Calculate a + b Input:The input will
For each pair of input integers a and b you should output the sum of a and b in one line,and with one line of output for each line in input.
Sample Input:
1 5
0 0
Sample Output:
6
刚刚学习ACM第一题就错了麻烦大家帮帮忙了
我的代码是这个
#include
using namespace std;
int main(int argc,char* argv[])
{
int a,b;
while(cin >> a >> b)
cout a >> b)
cout
人气:302 ℃ 时间:2020-09-05 21:20:44
解答
#include
using namespace std;
int main()
{
int a,b;
while (cin >> a >> b) {
if (a == 0 && b == 0)
return 1;
else
cout
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版