| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125075 | 汤雨帆 | 判断正数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 186 | 2024-01-23 16:23:32 |
#include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ double a; cin>>a; if(a>0) cout<<"yes"<<"\n"<<"a>0"; if(a<0) cout<<"no"<<"\n"<<"a<0"; }