Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
377520 徐嘉豪 【C1-11】判断数正负 C++ 通过 100 4 MS 248 KB 253 2026-02-05 21:16:35

Tests(3/3):


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


测评信息: