返回列表 發帖

第一支程式

  1. import java.lang.System;   //由於編譯時套件java.lang會自動引入, 故可忽略
  2. public class Ch01     //主類別
  3. {
  4.     public static void main(String args[])    //主方法
  5.     {
  6.          System.out.println("您好!");  //運用System類別下out物件的println()方法
  7.          System.out.print("歡迎使用Java!");
  8.     }
  9. }
複製代碼

  1. import java.lang.System;
  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          System.out.println("HELLO!");
  7.          System.out.print("WELCOME TO USE JAVA!");
  8.     }
  9. }
複製代碼

TOP

  1. import java.lang.System;   
  2. public class Ch01     
  3. {
  4.     public static void main(String args[])   
  5.     {
  6.          System.out.println("您好!");
  7.          System.out.print("歡迎使用Java!");
  8.     }
  9. }
複製代碼

TOP

  1. import java.lang.System;
  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         System.out.println("hello");
  7.         System.out.print("welcome to java");
  8.     }
  9. }
複製代碼

TOP

  1. public class Edit1
  2. {
  3.     public static void main(string args [])
  4.     {
  5.            System.out.println("hello,");
  6.            System.out.println("welcome to Taiwan!");
  7.     }
  8. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

返回列表