Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89518 王煜鑫 07判断成绩 C++ Wrong Answer 1 MS 272 KB 173 2024-08-25 14:21:05

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ int cj; cin>>cj; if(cj>=60){ cout<<"yes"; } if(cj<60){ cout<<"no"; } }


Run Info:

------Input------
14
------Answer-----
NO
------Your output-----
no