Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4835 刘轩宁 07判断奇数 C++ Wrong Answer 0 MS 260 KB 143 2024-09-21 20:29:40

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ int a; cin>>a; if (a%2==1){ cout<<"yes";} else{ cout<<"no";} return 0; }


Run Info:

------Input------
58
------Answer-----
No
------Your output-----
no