標題:
for 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2016-4-15 19:49
標題:
for 迴圈 (二)
本帖最後由 tonyh 於 2016-4-15 20:40 編輯
顯示0~100間所有偶數, 直向排列.
作者:
李知易
時間:
2016-4-15 20:13
本帖最後由 李知易 於 2016-4-15 20:45 編輯
public class Ch18
{
public static void main (String args[])
{
for(int i=0;i<=100;i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
黃柏維
時間:
2016-4-15 20:13
public class Ch17
{
public static void main(String arg[])
{
for(int i=0;i<=100;i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
沈子耕
時間:
2016-4-15 20:13
public class Ch17{
public static void main(String args[]){
for(int i=0; i<=100; i+=2)
System.out.println(i);
}
}
複製代碼
作者:
黃璽安
時間:
2016-4-15 20:16
public class Ch16
{
public static void main(String args[])
{
for(int i=0; i<=100; i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
陳思惟
時間:
2016-4-15 20:19
import java.lang.System; //由於編譯時套件java.lang會自動引入, 故可忽略
public class Ch18 //主類別
{
public static void main(String args[]) //主方法
{
for(int i=0;i<=100;i+=2)
System.out.println(i);
}
}
複製代碼
作者:
梁和雋
時間:
2016-4-15 20:44
public class Ch1
{
public static void main (String args[])
{
for(int i=0;i<=100;i+=2)
System.out.println(i);
}
}
複製代碼
作者:
曾挺桂
時間:
2016-4-15 20:48
本帖最後由 曾挺桂 於 2016-4-15 20:51 編輯
public class Ch16
{
public static void main(String args[])
{
for(int i=0;i<=100;i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
洪振庭
時間:
2016-4-15 21:09
public class Ch20
{
public static void main (String args[])
{
for(int i=0;i<=100;i+=2)
System.out.println(i);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2