標題:
資料輸入 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-5-25 15:20
標題:
資料輸入 (一)
本帖最後由 陳品肇 於 2019-5-25 16:08 編輯
運用套件java.util 下的 Scanner類別, 作字串輸入的練習.
import java.util.Scanner;
public class D0525 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String str1,str2;
System.out.print("輸入字串一: ");
str1=c.nextLine();
System.out.println("字串一: "+str1);
System.out.print("輸入字串二: ");
str2=c.nextLine();
System.out.println("字串二: "+str2);
}
}
複製代碼
作者:
蔡季庭
時間:
2019-5-25 16:24
import java.util.Scanner;
public class Gkk {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String str1;
System.out.print("輸入字串一: ");
str1=c.nextLine();
System.out.println("您輸入的字串: "+str1);
}
}
複製代碼
作者:
章幼莛
時間:
2019-5-25 16:24
import java.util.Scanner;
public class HELLO {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String s1,s2;
System.out.print("請輸入字串一:");
s1=c.nextLine();
System.out.println("字串一:"+s1);
System.out.print("請輸入字串二:");
s2=c.nextLine();
System.out.println("字串二:"+s2);
}
}
複製代碼
作者:
蔡依宸
時間:
2019-5-25 16:27
import java.util.Scanner;
public class Class {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String str1,str2;
System.out.print("輸入一字串:");
str1=c.nextLine();
System.out.println("字串一:"+str1);
System.out.print("輸入二字串:");
str2=c.nextLine();
System.out.println("字串二:"+str2);
}
}
複製代碼
作者:
陳柏霖
時間:
2019-5-25 16:28
import java.util.Scanner;
public class World {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c=new Scanner(System.in);
String s ,y;
System.out.print("請輸入字串一:");
s=c.nextLine();
System.out.println(s);
System.out.print("請輸入字串二:");
y=c.nextLine();
System.out.print(y);
}
}
複製代碼
作者:
譚詩澐
時間:
2019-5-25 16:29
import java.util.Scanner;
public class Java {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String s1;
System.out.print("請輸入字串一: ");
s1=c.nextLine();
System.out.println("字串一: "+str1);
}
}
複製代碼
作者:
戴唯陞
時間:
2019-5-25 16:29
import java.util.Scanner;
public class Workinghehe {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String str1,str2;
System.out.print("輸入字串一");
str1=c.nextLine();
System.out.print("字串一"+str1);
System.out.print("輸入字串二");
str2=c.nextLine();
System.out.print("字串二"+str2);
}
}
複製代碼
作者:
洪藜芸
時間:
2019-5-25 16:30
import java.util.Scanner;
public class Jin {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner a = new Scanner (System.in);
String s1,s2;
System.out.print("請輸入字串一:");
s1=a.nextLine();
System.out.println("字串一:"+s1);
System.out.print("請輸入字串二:");
s2=a.nextLine();
System.out.println("字串二:"+s2);
}
}
複製代碼
作者:
戴偉宸
時間:
2019-5-25 16:34
import java.util.Scanner;
public class Hihi {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
{
Scanner c=new Scanner(System.in);
String str1,str2;
System.out.print("輸入字串一:");
str1=c.nextLine();
System.out.println("字串一:"+str1);
System.out.print("輸入字串二:");
str2=c.nextLine();
System.out.println("字串二:"+str2);
}
}
}
複製代碼
作者:
洪子涵
時間:
2019-5-25 16:57
import java.util.Scanner;
public class cc {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String s1,s2;
System.out.print("輸入字串1:");
s1=c.nextLine();
System.out.println("字串1="+s1);
System.out.print("輸入字串2:");
s2=c.nextLine();
System.out.println("字串2="+s2);
}
}
複製代碼
作者:
戴安利
時間:
2019-5-29 20:26
import java.util.Scanner;
public class haha {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Scanner c = new Scanner(System.in);
String str1,str2;
System.out.print("輸入字串一: ");
str1=s.nextLine();
System.out.print("輸入字串二: ");
str2=s.nextLine();
System.out.println("字串一: "+str1);
System.out.println("字串二: "+str2);
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2