Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102529 钱恩浩 07判断奇数 C++ Wrong Answer 1 MS 272 KB 321 2024-12-21 19:18:27

Tests(0/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() using namespace std; int main(){ int a; cin>>a; if(a%2!=0){ cout<<"yes"; } else{ cout<<"no"; } return 0; }


Run Info:

------Input------
14
------Answer-----
No
------Your output-----
no