Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5960 张昊然 【基础题】正负数 C++ Accepted 2 MS 720 KB 189 2021-02-10 15:48:53

Tests(4/4):


Code:

#include <iostream> using namespace std; int main() { int n; cin >> n; if (n >= 0) { cout << "+"; } else { cout << "-"; } return 0; }