返回列表 發帖
  1. // Online Java Compiler
  2. // Use this editor to write, compile and run your Java code online

  3. class HelloWorld {
  4.     public static void main(String[] args) {
  5.         System.out.println("Hello, World!");
  6.         
  7.           for(int i=99;i>=1;i-=2)
  8.                         System.out.println(i);
  9.         }      
  10. }
複製代碼

TOP

返回列表