一个外循环。while,套一个if判断。变量除以3得整数是条件
int i = 1;while( i <= 100){ if(i%3==0) continue; else printf("i = %d\n",i);}
你学这个啊可难了