Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
359675 沈昊煊 【C1-11】判断数正负 C++ 解答错误 66 8 MS 244 KB 199 2025-11-04 16:34:01

Tests(2/3):


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


测评信息: