| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125179 | ...... | 判断正数 | C++ | Wrong Answer | 0 | 0 MS | 232 KB | 182 | 2024-01-23 16:31:48 |
#include<iostream> using namespace std; int main() { int a; if(a>0){ cout<<"Yes"<<endl; cout<<"a>0"; } else{ cout<<"No"<<endl; cout<<"a<0"; } return 0; }