2018-12-05
2018-12-05 本文已影响0人
2639c4293ebe
由题得可以每一行输入两个数字,把它们相加。用while判断是否输入两个数。
#include<stdio.h>
#include <iostream>
using namespace std;
int main()
{
int a, b;
while (cin >> a >> b)
{
cout << a+b<<endl;
}
return 0;
}
由题得可以每一行输入两个数字,把它们相加。用while判断是否输入两个数。
#include<stdio.h>
#include <iostream>
using namespace std;
int main()
{
int a, b;
while (cin >> a >> b)
{
cout << a+b<<endl;
}
return 0;
}