题解
2024-07-14 20:55:07
发布于:上海
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n;
void scan ()
{
cin >> n;
}
bool e ()
{
if (n % 2 == 0)
{
return true;
}
else
{
return false;
}
}
void print ()
{
if(e() == true)
{
cout << "even";
}
else
{
cout << "odd";
}
}
int main(void){
scan();
print();
}
这里空空如也
有帮助,赞一个