Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3740 | 杨洋杰 | 【基础题】正负数 | C++ | Wrong Answer | 0 MS | 264 KB | 138 | 2024-06-28 22:02:33 |
#include<iostream> using namespace std; int main(){ int a; if(a>0) cout<<"+"<<endl; else cout<<"-"<<endl; return 0; }
------Input------
1000
------Answer-----
+
------Your output-----
-