| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136493 | 余建成 | 07今天很热 | C++ | Wrong Answer | 1 MS | 272 KB | 185 | 2025-11-15 11:55:51 |
#include<iostream> using namespace std; int main() { int c; cin>>c; if(c>30) { cout<<"No"; } if(c<=30) { cout<<"Yes"; } return 0; }
------Input------
50
------Answer-----
hot
------Your output-----
No