Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39231 littletwleve 判断数正负 C++ 通过 0 MS 244 KB 198 2024-01-31 11:41:13

Tests(1/1):


#include<iostream>//头文件 using namespace std;//命名空间 int main(){ int n; cin>>n; if(n>0) cout<<"positive"; else if(n<0) cout<<"negative"; else cout<<"zero"; return 0; }


测评信息: