| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125473 | 王影彤 | 判断正数 | C++ | Wrong Answer | 50 | 0 MS | 244 KB | 146 | 2024-01-23 17:00:59 |
#include <iostream> using namespace std; int main(){ int a; cin>>a; if(a>0){ cout<<"yes"<<endl; cout<<a<<">0"; } return 0; }