#29616: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a244. 新手訓練 ~ for + if -- 新手訓練系列 ~ 1 | From: [182.233.207.92] | 發表日期 : 2022-03-14 17:46

#include <iostream>

#include <string>

#include <sstream>

#include <cmath>

using namespace std;

int main()

{

int x;

while (cin >> x)

{

for (int i = 0; i < x; i++)

{

int y;

long long a, b, c;

cin >> a >> b >> c;

 

long long res;

if (a == 1)

{

res = b + c;

}

else if (a == 2)

{

res = b - c;

}

else if (a == 3)

{

res = b * c;

}

else

{

res = b / c;

}

cout << res << endl;

}

}

}

 

 

 
ZeroJudge Forum