Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
540 邓小龙 07判断奇数 C++ Accepted 0 MS 256 KB 215 2022-11-19 14:35:37

Tests(10/10):


Code:

# include<stdio.h> # include<iostream> using namespace std; int main(){ int temp; cin>>temp; if(temp%2==0) { cout<<"No"; } else cout<<"Yes"; return 0; }