Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55513 | GT3RS 飞起来@阚 | 判断数正负 | C++ | 通过 | 0 MS | 240 KB | 221 | 2024-11-07 21:38:30 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; switch(n){ case 1: cout<<"positive"; break; case 0: cout<<"zero"; break; default: cout<<"negative"; } return 0; }