编写题解 2780: 奇偶数判断
摘要:解题思路:注意事项:参考代码:n=int(input())
if n%2!=0:
print('odd')
else:
print('even'……
编写题解 2780: 奇偶数判断
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n……