你在循环里想做什么呀,只是要循环吗 for循环 for(int n = 100;n <= 200;n += 2) { //做你想做的 } while循环 int n = 100; while(n <= 200) { n += 2; //做你想做的 }