Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95774 曹锦择 08比较三个数的大小 C++ Wrong Answer 1 MS 272 KB 222 2024-11-02 10:51:08

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,mxa; cin>>a; cin>>b; cin>>mxa; if(a>b>mxa){ cout<<"a"; } if(a>b>mxa){ cout<<"b"; } if(a>b>mxa); cout<<"mxa"; return 0; }


Run Info:

------Input------
69 90 74
------Answer-----
90
------Your output-----
mxa