| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149227 | 邓弘锐 | 07判断正负数 | C++ | Wrong Answer | 0 MS | 268 KB | 178 | 2026-03-08 14:27:33 |
#include<iostream> using namespace std; int main(){ int sx; cin>>sx; if(sx>0){ cout<<"Yes"<<endl; } else{ cout<<"NO"<<endl; } return 0; }
------Input------
6468
------Answer-----
YES
------Your output-----
Yes