標題:
【027】for 迴圈 (三)
[打印本頁]
作者:
tonyh
時間:
2023-2-8 16:07
標題:
【027】for 迴圈 (三)
顯示0~100間所有奇數, 從99開始倒數至1, 直向排列.
作者:
王捷恩
時間:
2023-2-18 13:57
public class A {
public static void main(String[] args) {
for(int i=0; i<=100; i++)
{
if(i%2!=0)
System.out.println(i);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2