1. 程式人生 > >第一次周賽#A題

第一次周賽#A題

問題連結:https://vjudge.net/problem/CodeForces-4A
問題分析:輸入的正整數w如果能夠拆分成兩個偶數,則輸出yes;否則輸出no;即當正整數w是大於2的偶數時,輸出yes;否則輸出no。
#include<iostream>
using namespace std;
int main()
{
	int w;
	cin >> w;
	if (w % 2 == 0&&w>2)cout << "yes";
	else cout << "no";
	return 0;
}