李雨昊 • 10个月前
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if (a>b && a>c){ cout<<"max="<<a; } else if(b>a && b>c){ cout<<"max="<<b; } else{ cout<<"max="<<c; } return 0; }
评论: