c++,输入一个整数,判断它是奇数还是偶数

#include
using namespace std;
int main()
{
int a;
cin>>a;
if (a%2==0)
{
cout <<“even”< }
else
{
cout << “odd” < }
return 0;
}

你可能感兴趣的:(信息学奥赛一本通c++)