| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125104 | 刘一诺 | 判断正数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 166 | 2024-01-23 16:25:34 |
# include<iostream> using namespace std; int main(){ double a; cin>>a; if(a>0){ cout<<"yes"<<(a>0); } if(a<0){ cout<<"no"<<(a<0); } return 0; }