Board logo

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

作者: 歐柏罕    時間: 2018-1-2 19:16     標題: Java的第一支程式

本帖最後由 歐柏罕 於 2018-1-2 19:57 編輯
  1. package test01;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 //變數(int string char float)
  5.                 //數值(int、float)
  6.                 //字串string char[]
  7.                 String name="Hello";//宣告 name 初始值
  8.                 // TODO 自動產生的方法 Stub
  9.                 System.out.print(name);
  10.                 //註解,讓人看的(電腦看不懂)
  11.                 //字串"  "  => 印出一模一樣的
  12.         }
  13. }
複製代碼

作者: 顏羽彤    時間: 2018-1-2 19:58

  1. package test;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String name = "May";
  5.                 // TODO 自動產生的方法 Stub
  6.                 System.out.print(name);
  7.         }

  8. }
複製代碼

作者: 石光仁    時間: 2018-1-2 20:01

  1. package test01;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String name="石光仁";
  5.                 // TODO 自動產生的方法 Stub
  6.                 System.out.print(name);
  7.         }
  8. }
複製代碼

作者: 石光義    時間: 2018-1-2 20:02

  1. package test01;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String name="Herby";
  5.                 // TODO 自動產生的方法 Stub
  6.                
  7. System.out.print(name);
  8. //System.out.print(name);
  9.         }

  10. }
複製代碼

作者: 巫沛庭    時間: 2018-1-2 20:02

  1. package test;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String name="巫沛庭";
  5.                 // TODO 自動產生的方法 Stub
  6.                 System.out.print(name);

  7.         }

  8. }
複製代碼

作者: 張閎鈞    時間: 2018-1-2 20:04

  1. package testOuO;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String hello="張閎鈞";
  5.                 // TODO 自動產生的方法 Stub
  6. System.out.print(hello);
  7.         }

  8. }
複製代碼

作者: may    時間: 2018-1-2 20:09

  1. package test;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String name = "May";
  5.                 // TODO 自動產生的方法 Stub
  6.                 System.out.print(name);
  7.         }

  8. }
複製代碼

作者: 石光義    時間: 2018-1-2 20:13

  1. package test01;

  2. public class testClass {

  3.         public static void main(String[] args) {
  4.                 String name="Herby";
  5.                 // TODO 自動產生的方法 Stub
  6.         System.out.print(name);
  7.         //System.out.print(name);
  8.         
  9.         }
  10. }
複製代碼

作者: 巫晉宇    時間: 2018-1-2 20:14

  1. package spice01;

  2. public class spiceClass01 {

  3.         public static void main(String[] args) {String ff="巫晉宇";

  4.        

  5.         System.out.print(ff);
  6.                 // TODO 自動產生的方法 Stub

  7.         }
  8.        
  9. }
複製代碼

作者: 巫晉宇    時間: 2018-1-2 20:23

package spice01;

public class spiceClass01 {

        public static void main(String[] args) {
         float num=2;
        float num1=1;
        System.out.print(num+num1);
        System.out.print(num-num1);
        System.out.print(num*num1);
        System.out.print(num/num1);
        System.out.print(num%num1);
                // TODO 自動產生的方法 Stub

        }
       
}




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