Run ID:107536
提交时间:2025-01-18 09:51:18
#include <iostream> #include <cstdio> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>b>c) { cout<<"max="<<a<<endl; } if(b>a>c) { cout<<"max="<<b<<endl; } else { cout<<"max="<<c<<endl; } return 0; }