返回列表 發帖

第一支程式

  1. public class ch01       //類別
  2. {
  3.     public static void main(String args[])     //方法
  4.     {
  5.          System.out.print("歡迎使用Java!");
  6.     }
  7. }
複製代碼

  1. public class ch01
  2. {
  3.    public static void main (String args[])
  4.    {
  5.     System.out.print("hello this is jave demo");
  6.    }
  7. }
複製代碼

TOP

  1. public class ch01       //類別
  2. {
  3.     public static void main(String args[])     // 方法
  4.     {
  5.          System.out.print("Java!");
  6.     }
  7. }
複製代碼

TOP

  1. public class ch01 //類別
  2. {
  3. public static void main(String args[]) //方法
  4. {
  5.    System.out.print("歡迎使用java!");
  6. }

  7. }
複製代碼

TOP

回復 1# tonyh
  1. public class ch01
  2. {
  3.   public static void main(String args[])
  4.   {
  5.   System.out.print("歡迎使用");
  6.   }
  7. }
複製代碼

TOP

  1. public class ch01
  2. {
  3.        public static void main (String args[])
  4.        {
  5.               System.out.print("歡迎使用java");

  6.        }
  7. }
複製代碼

TOP

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
May

TOP

返回列表