填空题
以下程序的功能是:输出100以内(不含100)能被3整除且个位数为4的所有整数,请填空。
main()
int i,j;
for( i=0; 1<10 ;i++)
j=
(11)
;
if(
(12)
) continue;
printf( "%d",j);
提交答案
关闭