Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
547 | 曾浩森 | 07判断正负数 | C++ | Wrong Answer | 0 MS | 256 KB | 211 | 2022-11-19 14:47:44 |
#include<iostream> using namespace std; int main(){ int temp; cin>>temp; if(temp>0) { cout<<"Yes"<<endl; } else{ cout<<"NO"<<endl; } return 0; }
------Input------
455
------Answer-----
YES
------Your output-----
Yes