#include <iostream> using namespace std; int main() { int a, b, c; cin >> a; cin >> b; cin >> c; cout<<max(a,max(b,c)); return 0; } 会用库函数就是好,连干两道。