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