题解 | #判断整数奇偶性#
判断整数奇偶性
https://www.nowcoder.com/practice/a8b018667e274af29b5f76a6673450fc
#include <stdio.h>
int main() {
int a;
while (scanf("%d", &a) != EOF) {
if (a % 2 == 0) {
printf("Even\n");
} else {
printf("Odd\n");
}
}
return 0;
}

传音控股公司福利 356人发布