#40407:


11255079@stu.chjh.tp.edu.tw (1120630葉林潤)

學校 : 不指定學校
編號 : 268771
來源 : [163.21.229.5]
最後登入時間 :
2024-05-10 16:41:21
d065. 三人行必有我師 (1 行版) -- 板橋高中教學題 | From: [163.21.229.5] | 發表日期 : 2024-05-17 16:17

#include <iostream>

using namespace std;

int main()
{
    int a,b,c;
     cin >> a >> b >> c;


    if (a >= b && a >= c)
        cout << a << endl;
    else if (b >= a && b >= c)
        cout << b << endl;
    else
        cout << c << endl;
    return 0;
}

 

 

 
ZeroJudge Forum