Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6318 limingyu 输入三个数,输出其中最大的数 C++ 通过 1 MS 284 KB 389 2022-11-30 21:38:38

Tests(1/1):


#include<iostream> using namespace std; int main () { int a; int b; int c; int max; cin >> a; cin >> b; cin >> c; if (a > b){ max = a; }else{ max = b; } if (max<c){ max = c; cout<<c<<endl; }else{ cout<<max<<endl; } return 0; }


测评信息: