標題:
for 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2021-8-28 19:38
標題:
for 迴圈 (二)
顯示0~100間所有偶數, 直向排列.
作者:
林土水
時間:
2021-8-28 19:54
import java.io.Console;
public class Ch06
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2;)
{
System.out.println(i);
}
}
}
複製代碼
作者:
余柏緯
時間:
2021-8-28 19:55
import java.lang.System;
import java.io.Console;
public class Ch16
{
public static void main(String args[])
{
for(int i=0;i<=100;i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
林鼎傑
時間:
2021-8-28 19:58
import java.io.Console;
public class Ch15
{
public static void main(String args[])
{
for(int i=0;i<=100;i=i+2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
蔡寓珉
時間:
2021-8-28 20:02
import java.io.Console;
public class Ch12
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2;)
{
System.out.println(i);
}
}
}
複製代碼
作者:
王秉鈞
時間:
2021-8-28 20:02
本帖最後由 王秉鈞 於 2021-8-28 20:19 編輯
import java.io.Console;
public classCh08
{
public static void main(String args[])
{
for(int i=0; i<100; i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
黃子倢
時間:
2021-8-28 20:04
import java.io.Console;
public class Ch15
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
林佑宸
時間:
2021-8-28 20:05
本帖最後由 林佑宸 於 2021-8-28 20:21 編輯
import java.io.Console;
public class Ch14
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
陳志祐
時間:
2021-8-28 20:06
import java.io.Console;
public class Ch14
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
許洧熏
時間:
2021-8-28 20:09
import java.io.Console;
public class Ch06
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2;)
{
System.out.println(i);
}
}
}
複製代碼
作者:
冠宇
時間:
2021-8-28 20:15
import java.io.Console;
public class Ch15
{
public static void main(String args[])
{
for(int i=0;i<=100;i=i+2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
俞成章
時間:
2021-8-28 20:18
import java.io.Console;
public class Ch06
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2;)
{
System.out.println(i);
}
}
}
複製代碼
作者:
朱奕祐
時間:
2021-8-28 20:23
import java.lang.System;
import java.io.Console;
public class Ch16
{
public static void main(String args[])
{
for(int i=0;i<=100;i+=2)
{
System.out.println(i);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2