攻破水题我最爱AC
2023-11-06 17:03:35
发布于:广东
1阅读
0回复
0点赞
思路很简单:
如果 n%2 == 0 那么他就是偶数,否则是奇数
就这么简单,上代码!!!
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin>>n;
if(n%2 == 0)
{
cout<<"even";
}else{
cout<<"odd";
}
return 0;
}
这里空空如也
有帮助,赞一个