標題:
【035】while 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2023-3-15 15:44
標題:
【035】while 迴圈 (一)
利用 while 迴圈, 直列印出1~10.
public class Ch23{
public static void main(String args[])
{
int i=1;
while(i<11)
{
System.out.println(i);
i++;
}
}
}
複製代碼
作者:
王捷恩
時間:
2023-3-15 15:56
public class A {
public static void main(String args[])
{
int i=1;
while(i<11)
{
System.out.println(i);
i++;
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2