#includevoid main(){ int x; scanf("%d", &x); if (x % 2) printf("%d是奇数\n", x); else printf("%d是偶数\n", x);}
void main改为 int mainscanf改为scanf_s