#include <iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入一個數"<<endl;
cin >>x;
cout<<"請輸入另一個數"<<endl;
cin >>y;
cout <<"這兩個數的和為:"<< x+y <<endl;
system("pause");
return 0;
}
請高手講解一下
這樣在C++裡可以執行
但是送出後卻不通過
為甚麼呢?
judge不是人,所以不用說明。
以下會過第一組測資:
#include <iostream>
using namespace std;
int main()
{
int x,y;
cout<<"";
cin >>x;
cout<<"";
cin >>y;
cout <<""<< x+y <<endl;
//system("pause");
return 0;
}
把它整理一下:
#include <iostream>
using namespace std;
int main()
{
int x,y;
cin >>x >>y;
cout << x+y <<endl;
return 0;
}
因為可能有很多組測資,所以要加個迴圈讓他循環
#include <iostream>
using namespace std;
int main()
{
int x,y;
while(cin >>x >>y)
cout << x+y <<endl;
return 0;
}