返回列表 發帖
  1. import java.util.Scanner;

  2. public class Ch05 {
  3.         public static void main(String args[]) {
  4.                  
  5.                 for(int x=1;x<10;x++){
  6.                         if(x%2==0)
  7.                                 continue;
  8.                         System.out.println(x);                       
  9.                 }
  10.         }
  11. }
複製代碼

TOP

返回列表