Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
29534 lnx 判断数正负 C++ 通过 0 MS 244 KB 203 2023-10-31 18:43:11

Tests(1/1):


#include<iostream> using namespace std; int main() { int N; cin>>N; if(N>0) { cout<<"positive"; } if(N==0) { cout<<"zero"; } if(N<0) { cout<<"negative"; } return 0; }


测评信息: