Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5201 谢锦卓 07判断成绩 C++ Wrong Answer 0 MS 260 KB 262 2024-11-09 09:23:22

Tests(0/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int score; cin>>score; if(score>=60){ cout<<"yes"<<endl; } else{ cout<<"no"<<endl; } return 0; }


Run Info:

------Input------
58
------Answer-----
NO
------Your output-----
no