Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95769 | 刘宇帆 | 08比较三个数的大小 | C++ | Wrong Answer | 1 MS | 272 KB | 216 | 2024-11-02 10:48:13 |
#include<bits/stdc++.h> using namespace std; int main(){ float a,s,d,AI; cin>>a; cin>>d; cin>>s; if(a>s){ a=AI; }else{ s=AI; } if(AI<d){ cout<<d; }else{ cout<<AI; } return 0; }
------Input------
97 95 4
------Answer-----
97
------Your output-----
95