| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140249 | 曹奕晗 | 07判断正负数 | C++ | Wrong Answer | 0 MS | 268 KB | 158 | 2025-12-13 17:39:51 |
#include<iostream> using namespace std; int main() { int a; cin>>a; if(a>0) { cout<<"yes"; } if(a<0) { cout<<"No"; } return 0; }
------Input------
6468
------Answer-----
YES
------Your output-----
yes