Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4858 | 陆若涵 | 07判断正负数 | C++ | Wrong Answer | 0 MS | 268 KB | 145 | 2024-09-21 20:57:47 |
#include <iostream> using namespace std; int main(){ int s; cin>>s; if (s>0){ cout<<"是正数"; } else{ cout<<"是负数"; } }
------Input------
-6529
------Answer-----
NO
------Your output-----
是负数