#51432: c++正解跟思路 (想學再點)


yp11451032@yphs.tp.edu.tw (711-23吳嘉恩)


#include<iostream>
#include<iomanip>//才能使用max
using namespace std;
int main(){
    int a,b,c;//宣告
    cin>>a>>b>>c;//輸入
    cout<<max(a,max(b,c))<<"\n";
}