Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117814 | 张修睿 | 07判断正负数 | C++ | Wrong Answer | 0 MS | 264 KB | 150 | 2025-04-20 13:03:50 |
#include<bits/stdc++.h> using namespace std; int main() { int a; if (a > 0) { cout<<"yes"; } else { cout<<"no"; } return 0; }
------Input------
6468
------Answer-----
YES
------Your output-----
no