下列程序運(yùn)行后的輸出結(jié)果是()。 #include main( ) { int x=9; for(; x>0; x--){ if(x%3==0){ printf(“%d”,--x); continue; } } }