main(){ int m=1; while(m<100) { if(m%2==0) printf("偶数:%d\n",m); else printf("奇数:%d\n",m); m++; }
getch();}
谢谢
c里面的判断条件不能这样用啊.
m>=1&&m<=100