题解 | #小美的因子查询#
小美的因子查询
https://www.nowcoder.com/practice/1870e68256794c6aa727c8bb71fd9737
t = int(input())
for _ in range(t):
n = int(input())
if n & 1:
print('NO')
else:
print('YES')
小美的因子查询
https://www.nowcoder.com/practice/1870e68256794c6aa727c8bb71fd9737
t = int(input())
for _ in range(t):
n = int(input())
if n & 1:
print('NO')
else:
print('YES')
相关推荐