Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
544 曾浩森 07判断正负数 C++ Wrong Answer 0 MS 260 KB 212 2022-11-19 14:44:35

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ int temp; cin>>temp; if(temp>0) { cout<<"是正数"; } else{ cout<<"是负数"; } return 0; }


Run Info:

------Input------
-6529
------Answer-----
NO
------Your output-----
是负数