Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
9626 | lulu | 最大数输出 | C++ | Accepted | 0 MS | 244 KB | 206 | 2023-02-14 18:18:57 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>=b&&a>=c){ cout<<a; } if(b>=a&&b>=c){ cout<<b; } if(c>=a&&c>=b){ cout<<c; } return 0; }