当输入7时,以下代码输出的Odd和Even是多少个()
int t; scanf("%d", &t); for (int i = 0; i < t + 1; i++) { printf(i&1?"Odd":"Even"); }
4 4
4 3
3 5
5 3