Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95771 刘宇帆 08比较三个数的大小 C++ Wrong Answer 1 MS 276 KB 211 2024-11-02 10:49:23

Tests(1/10):


Code:

#include<iostream> 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; }


Run Info:

------Input------
97 95 4
------Answer-----
97
------Your output-----
95