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

Tests(1/1):


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


测评信息: