#3706: 簡單加法 這樣為啥不行 拜托教我 我新手


winoslayer1 (阿甫Leo)

學校 : 臺北市私立延平高級中學
編號 : 11840
來源 : [220.131.73.227]
最後登入時間 :
2010-05-08 23:24:45
a002. 簡易加法 | From: [59.117.187.76] | 發表日期 : 2010-05-04 23:28

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{

int a,b,c,d;
cin >> a >> b >>c >> d ;

cout << (a+b) << endl;

cout << (c+d) << endl;

system("PAUSE");

return 0 ;


}

 
#3708: Re:簡單加法 這樣為啥不行 拜托教我 我新手


linishan (L)

學校 : 國立交通大學
編號 : 1090
來源 : [104.132.150.102]
最後登入時間 :
2019-05-10 19:57:54
a002. 簡易加法 | From: [125.226.9.152] | 發表日期 : 2010-05-05 22:01

#include
#include

using namespace std;

int main(int argc, char *argv[])
{

int a,b,c,d;
cin >> a >> b >>c >> d ;

cout << (a+b) << endl;

cout << (c+d) << endl;

system("PAUSE");

return 0 ;


}

題目意思是會有多"組" 2個數字的測資

請用 while(cin>>a>>b)

 
ZeroJudge Forum