输出结果是( )。
#include <stdio.h> void main( ) { int y = 9; for (; y > 0; y--) if (y % 3 == 0) { printf("%2d", --y); continue; } }
Copyright ©