Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6244 wuyiming 输入三个数,输出其中最大的数 C++ 通过 1 MS 280 KB 241 2022-11-27 17:14:33

Tests(1/1):


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


测评信息: