大哥,这个程序是#include <stdio.h>main(){int x=8;for( ; x>0; x--){if(x%3){printf("%d, ",x--);continue;}printf("%d, ",--x);}}最后输出?