用for循環計算1到1000之間的奇數
用for循環計算1到1000之間的奇數
用for循環計算1到1000之間的奇數
用for循環計算1到1000之間的奇數
System.out.println("幫忙啊!");
public class Test {
/**
* @param args
* @throws InterruptedException
*/
public static void main(String[] args) {
for (int i = 0; i < 1000; i++) {
if (i % 2 != 0) {
// 奇數
System.out.println(i);
}
if (i % 2 == 0) {
// 偶數
System.out.println(i);
}
}
}
}