Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97735 李昊宇 07判断正负数 C++ Accepted 1 MS 272 KB 202 2024-11-16 14:28:24

Tests(10/10):


Code:

#include<iostream> #include<cmath> using namespace std; int main(){ int c,j; cin>>c; if(c>0){ cout<<"YES"<<endl; } else{ cout<<"NO"<<endl; } }