#include <stdio.h>main(){ int y=9; for( ; y>0; y--) if(y%3==0) printf("%d", --y);}为什么y--没用于最后来减1,我做的是741!!!