程序设计题 #include void main() { int x,t; printf("请输入x=?\n"); scanf("%d",&x); t=x%2; if(t==0) printf("%d是偶数\n",x); if(t==1) printf("%d是奇数\n",x); }