Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118921 | 王奕诺 | 07判断正负数 | C++ | Wrong Answer | 1 MS | 264 KB | 206 | 2025-05-10 19:08:03 |
#include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main(){ int a; cin>>a; if(a>0){ cout<<"正"; }else cout<<"负"; }
------Input------
6468
------Answer-----
YES
------Your output-----
正