Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145776 张奕杨 简单的分支结构 C++ Accepted 0 MS 272 KB 171 2026-01-25 19:00:35

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x>0) cout<<1; else if(x<0) cout<<-1; else cout<<0; return 0; }