填空题

下面程序是计算100以内能被4整除且个位数为4的所有整数,请填空。 main() {int m,n; for(m=0; 【9】 ;m++) {n=m*10+4; If( 【10】 )continue; printf("%d\n",n);} }

【参考答案】

[9]m<10