为什么不用python呢?

P2955 [USACO09OCT] Even? Odd? G

这题。。。C++很好写啊
by wxy_god @ 2018-10-25 22:06:55


```python3 for i in range(int(input())): print('odd' if int(input()) & 1 else 'even') ```
by LoctStrider @ 2018-10-25 22:21:04


|