| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125110 | 龚梓嘉 | 判断正数 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 210 | 2024-01-23 16:26:17 |
# include<iostream> using namespace std; int main() { int a; cin>>a; if (a>0){ cout<<"yes\n"<<"a>0"; }else if(a==0){ cout<<"no\n"<<"a=0"; } else{ cout<<"no\n"<<"a<0"; } return 0; }