標題:
Java的第一支程式
[打印本頁]
作者:
歐柏罕
時間:
2018-1-2 19:16
標題:
Java的第一支程式
本帖最後由 歐柏罕 於 2018-1-2 19:57 編輯
package test01;
public class testClass {
public static void main(String[] args) {
//變數(int string char float)
//數值(int、float)
//字串string char[]
String name="Hello";//宣告 name 初始值
// TODO 自動產生的方法 Stub
System.out.print(name);
//註解,讓人看的(電腦看不懂)
//字串" " => 印出一模一樣的
}
}
複製代碼
作者:
顏羽彤
時間:
2018-1-2 19:58
package test;
public class testClass {
public static void main(String[] args) {
String name = "May";
// TODO 自動產生的方法 Stub
System.out.print(name);
}
}
複製代碼
作者:
石光仁
時間:
2018-1-2 20:01
package test01;
public class testClass {
public static void main(String[] args) {
String name="石光仁";
// TODO 自動產生的方法 Stub
System.out.print(name);
}
}
複製代碼
作者:
石光義
時間:
2018-1-2 20:02
package test01;
public class testClass {
public static void main(String[] args) {
String name="Herby";
// TODO 自動產生的方法 Stub
System.out.print(name);
//System.out.print(name);
}
}
複製代碼
作者:
巫沛庭
時間:
2018-1-2 20:02
package test;
public class testClass {
public static void main(String[] args) {
String name="巫沛庭";
// TODO 自動產生的方法 Stub
System.out.print(name);
}
}
複製代碼
作者:
張閎鈞
時間:
2018-1-2 20:04
package testOuO;
public class testClass {
public static void main(String[] args) {
String hello="張閎鈞";
// TODO 自動產生的方法 Stub
System.out.print(hello);
}
}
複製代碼
作者:
may
時間:
2018-1-2 20:09
package test;
public class testClass {
public static void main(String[] args) {
String name = "May";
// TODO 自動產生的方法 Stub
System.out.print(name);
}
}
複製代碼
作者:
石光義
時間:
2018-1-2 20:13
package test01;
public class testClass {
public static void main(String[] args) {
String name="Herby";
// TODO 自動產生的方法 Stub
System.out.print(name);
//System.out.print(name);
}
}
複製代碼
作者:
巫晉宇
時間:
2018-1-2 20:14
package spice01;
public class spiceClass01 {
public static void main(String[] args) {String ff="巫晉宇";
System.out.print(ff);
// TODO 自動產生的方法 Stub
}
}
複製代碼
作者:
巫晉宇
時間:
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