Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
548 邓小龙 07判断正负数 C++ Wrong Answer 0 MS 264 KB 211 2022-11-19 14:49:28

Tests(1/10):


Code:

#include<iostream> using namespace std; int main(){ int temp; cin>>temp; if(temp>0) { cout<<"Yes"<<endl; } else{ cout<<"NO"<<endl; } return 0; }


Run Info:

------Input------
455
------Answer-----
YES
------Your output-----
Yes