偶数
GESP一级知识点if
分支语句和取余操作%
的应用练习。
BCQM3081
题目要求
描述
读入一个正整数a,如果a为偶数输出yes。
输入
一个正整数a。
输出
偶数输出yes,否则什么也不输出。
输入样例
12
输出样例
yes
题目分析
- 用
int
类型变量读取正整数输入 - 通过对2取余操作判断是否是整数,应用
if
语句。 - 余数为0的,输出字符串
yes
。
代码参考
#include <iostream>
using namespace std;
int main() {
int a;
cin >> a;
if (a % 2 == 0) {
cout << "yes";
}
return 0;
}
{% include custom/custom-post-content-footer.md %}
所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code
“luogu-”系列题目可在 洛谷题库 在线评测。
“bcqm-”系列题目可在 编程启蒙题库 在线评测。
GESP/CSP 认证学习微信公众号

Last updated on