简单
2023-12-25 16:13:10
发布于:浙江
1阅读
0回复
0点赞
#include <iostream>
2
using namespace std;
3
int main(){
4
int n;
5
cin >> n;
6
if(n%2==1)
7
cout << "odd";
8
else
9
cout << "even";
10
return 0;
11
}//简简单单
这里空空如也
2023-12-25 16:13:10
发布于:浙江
#include <iostream>
2
using namespace std;
3
int main(){
4
int n;
5
cin >> n;
6
if(n%2==1)
7
cout << "odd";
8
else
9
cout << "even";
10
return 0;
11
}//简简单单
这里空空如也
有帮助,赞一个