標題:
for 迴圈 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-5-3 21:21
標題:
for 迴圈 (一)
語法
//起始值(起點) 結束條件(終點) 控制項(步伐)
for(起始值;持續條件;控制項){
//要for執行的事
}
在螢幕上顯示數字從
1到10
, 直向排列.
可以參考一下當初在
C++
如何寫的
作者:
林劭澧
時間:
2023-5-10 20:10
import java.util.Scanner;
public class Ch01
{
public static void main(String[] args)
{
for(int i=1;i<=10;i++)
System.out.println(i);
}
}
複製代碼
作者:
李彣
時間:
2023-5-10 20:15
public class B
{
public static void main(String[] args)
{
for(int i=1;i<=10;i++)
{
System.out.println(i);
}
}
}
複製代碼
作者:
林劭杰
時間:
2023-5-10 20:16
// Online Java Compiler
// Use this editor to write, compile and run your Java code online
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
for(int i=1;i<=10;i++)
System.out.println(i);
}
}
複製代碼
作者:
黃裕恩
時間:
2023-5-10 20:16
import java.util.Scanner;
public class Tyui
{
public static void main(String[] args)
{
for(int i=1;i<=10;i++)
System.out.println(i);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2