| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125106 | 刘语晗 | 判断正数 | C++ | Accepted | 100 | 0 MS | 256 KB | 205 | 2024-01-23 16:25:42 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a>0){ cout<<"yes"<<endl; cout<<a<<">0"<<endl; } else{ cout<<"no"<<endl; cout<<a<<"<0"; } return 0; }