Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114968 鲁博睿 08比较三个数大小II C++ Wrong Answer 1 MS 272 KB 204 2025-03-25 20:26:47

Tests(0/10):


Code:

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


Run Info:

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