Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6255 zhaohaoyu 输入三个数,输出其中最大的数 C++ 解答错误 1 MS 280 KB 304 2022-11-27 17:28:22

Tests(0/1):


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


测评信息: