| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55952 | 该账号已封禁 | 判断数正负 | C++ | Wrong Answer | 0 MS | 240 KB | 232 | 2024-11-08 17:17:02 |
#include<iostream> using namespace std; int main() { int a; cin>>a; if (a>0){ cout<<"positive"; } if (a<0){ cout<<"negative"; } else{ cout<<"zero"; } }