阅读程序写结果
#include<iostream>
using namespace std;
int main(){
bool flag;
int n;
cin >>n;
if(n%2==0){
flag=true;
}else{
flag=false;
}
if(flag){
cout << "yes";
cout <<"no";
return 0;
输入: 12
输出:________
yes
no
true
false