#include<stdio.h> int main(void) { int n=0; scanf("%d",&n); if (0==n%2); printf("偶数\n"); else printf("奇数\n"); return 0; }
请问为什么无法运行
if后面的条件行末没有分号