#4758: 簡易加法通過的標準?(第一次玩)


ericwei0309 (廷)

學校 : 臺北市立松山高級工農職業學校
編號 : 15823
來源 : [58.114.68.131]
最後登入時間 :
2011-01-21 10:49:49
a002. 簡易加法 | From: [58.114.68.131] | 發表日期 : 2011-01-16 00:29

 

#include <iostream>
using namespace std;

int ohman(int x,int y)
{
    cout <<x << "+" << y;
    return (x+y);
}
int main()
{
    int a, b, c;
    cin >> a ;
    cin >> b ;
    c=ohman(a,b);
    cout <<"=";
    cout << c;
    cout << "\n\n";
    system("pause");
    return 0;
}
複製這樣RF欸

 

寫出來了,可以計算,但是機器裁判的標準是啥?

 
#4774: Re:簡易加法通過的標準?(第一次玩)


cbs951214 (哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈...)

學校 : 康橋雙語學校
編號 : 11868
來源 : [1.162.186.8]
最後登入時間 :
2024-05-27 10:17:05
a002. 簡易加法 | From: [114.45.162.78] | 發表日期 : 2011-01-21 17:18

 

#include
using namespace std;

int ohman(int x,int y)
{
    cout <    return (x+y);
}
int main()
{
    int a, b, c;
    cin >> a ;
    cin >> b ;
    c=ohman(a,b);
    cout <<"=";
    cout << c;
    cout << "\n\n";
    system("pause");
    return 0;
}
複製這樣RF欸

 

寫出來了,可以計算,但是機器裁判的標準是啥?


直接輸出答案就好了

像輸入     1 2

就輸出     3             不用輸出1+2=3 

 
ZeroJudge Forum