Board logo

標題: 第一支程式 [打印本頁]

作者: 陳品肇    時間: 2019-5-10 22:52     標題: 第一支程式

  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. }
複製代碼

作者: 章幼莛    時間: 2019-5-11 16:58

本帖最後由 章幼莛 於 2019-5-11 17:01 編輯
  1. import java.lang.System;
  2. public class Hello
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.                 // TODO 自動產生的方法 Stub
  7.         System.out.printf("Hello Word!!!");
  8.     }
  9. }
複製代碼

作者: 陳柏霖    時間: 2019-5-11 16:59

  1. import java.lang.System;
  2. public class Hello {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub

  5.                 System.out.println("您好!");
  6.                 System.out.print("歡迎使用Java!");
  7.         }

  8. }
複製代碼

作者: 蔡依宸    時間: 2019-5-11 17:01

  1. public class Hello {

  2.         public static void main(String[] args) {
  3.                 System.out.println("hello world");
  4.                 System.out.print("hello world");

  5.         }

  6. }
複製代碼

作者: 蔡季庭    時間: 2019-5-11 17:02

  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. }
複製代碼

作者: 戴偉宸    時間: 2019-5-17 20:32

  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. }
複製代碼

作者: 戴安利    時間: 2019-5-17 20:34

  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. }
複製代碼

作者: 戴唯陞    時間: 2019-5-17 20:37

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

作者: 洪子涵    時間: 2019-5-18 09:54

  1. public class HelloWorld {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 System.out.println("Hello World");
  5.                 System.out.print("歡迎使用Java");
  6.         }

  7. }
複製代碼

作者: 洪藜芸    時間: 2019-5-18 09:55

  1. public class HelloWorld {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.     System.out.println("Hello!");
  5.     System.out.print("歡迎使用Java!");
  6.         }

  7. }
複製代碼

作者: 譚詩澐    時間: 2019-5-18 09:58

  1. import java.lang.System;
  2. public class HelloWorld {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.     System.out.println("Hello World");
  6.     System.out.print("你好!");
  7.         }

  8. }
複製代碼

作者: 黃安立    時間: 2019-6-15 13:27

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2