標題:
for 迴圈 (三)
[打印本頁]
作者:
鄭繼威
時間:
2023-5-3 21:22
標題:
for 迴圈 (三)
顯示0~100間所有
奇數
, 從
99開始倒數至1
, 直向排列.
作者:
林劭澧
時間:
2023-5-10 20:12
import java.util.Scanner;
public class Ch01
{
public static void main(String[] args)
{
for(int i=99;i>=1;i-=2)
System.out.println(i);
}
}
複製代碼
作者:
林劭杰
時間:
2023-5-10 20:17
// 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=99;i>=1;i-=2)
System.out.println(i);
}
}
複製代碼
作者:
李彣
時間:
2023-5-10 20:19
public class B
{
public static void main(String[] args)
{
for(int i=99;i>=1;i+=2)
{
System.out.println(i);
}
}
}
複製代碼
作者:
黃裕恩
時間:
2023-5-10 20:24
class Umok {
public static void main(String[] args) {
System.out.println("Hello, World!");
for(int i=99;i>=1;i-=2)
System.out.println(i);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2