Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95246 | 张德皓 | 08判断区间 | C++ | Wrong Answer | 0 MS | 272 KB | 208 | 2024-10-27 10:26:10 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>b>c){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
------Input------
33 9 76
------Answer-----
yes
------Your output-----
no