#30142: 解答 : c++


mephistoxfaust@gmail.com (舟梅浮永不逆)

學校 : 新北市立板橋高級中學
編號 : 192128
來源 : [203.64.161.123]
最後登入時間 :
2023-09-23 09:49:41
a002. 簡易加法 | From: [114.35.70.1] | 發表日期 : 2022-05-01 14:19

用int設整數變數a 與 b while判定若有輸入值 則輸出a+b

#include<iostream>
using namespace std;

int main()
{
    int a, b;
    while( cin >> a >> b  )
    {
        cout << a+b << endl;
    }
    return 0;
}

 
#30164: Re: 解答 : c++


gaspardthegenius (gaspard)

學校 : 臺北市私立復興實驗高級中學
編號 : 192216
來源 : [203.204.47.174]
最後登入時間 :
2022-06-06 19:13:19
a002. 簡易加法 | From: [203.204.47.174] | 發表日期 : 2022-05-02 19:33

用int設整數變數a 與 b while判定若有輸入值 則輸出a+b

#include
using namespace std;

int main()
{
    int a, b;
    while( cin >> a >> b  )
    {
        cout << a+b << endl;
    }
    return 0;
}

其實你可以強制輸入

 
ZeroJudge Forum