Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6256 baodiyuan 输入三个数,输出其中最大的数 C++ 通过 2 MS 276 KB 261 2022-11-27 17:28:27

Tests(1/1):


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


测评信息: