Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2733 邓小龙 07判断正负数 C++ Accepted 0 MS 268 KB 214 2024-01-21 09:16:34

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int score; scanf("%d",&score); if(score>0){ printf("YES\n"); } if(score<0){ printf("NO\n"); } return 0; }