Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2730 黄宜洋 07判断奇数 C++ Accepted 0 MS 256 KB 199 2024-01-21 09:08:31

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int a; scanf("%d",&a); if(a % 2 != 0){ printf("Yes\n"); } if(a % 2 == 0){ printf("No\n"); } }