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