標題:
【014】資料輸入 (一)
[打印本頁]
作者:
tonyh
時間:
2023-1-4 16:21
標題:
【014】資料輸入 (一)
本帖最後由 tonyh 於 2023-1-4 16:33 編輯
運用套件 java.io 下的 Console 類別, 作字串輸入的練習.
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
System.out.print("輸入字串一: ");
str1=c.readLine();
System.out.println("字串一: "+str1);
System.out.print("輸入字串二: ");
str2=c.readLine();
System.out.println("字串二: "+str2);
}
}
複製代碼
import java.io.Console;
public class Ch03
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console();
str1=c.readLine("輸入字串1: ");
str2=c.readLine("輸入字串2: ");
System.out.println("字串1: "+str1);
System.out.println("字串2: "+str2);
}
}
複製代碼
作者:
王捷恩
時間:
2023-1-4 16:33
import java.io.Console;
public class A {
public static void main(String[] args) {
String str1,str2;
Console c=System.console();
System.out.print("Enter string 1: ");
str1=c.readLine();
System.out.println("String 1: "+str1);
System.out.print("Enter string 2: ");
str2=c.readLine();
System.out.println("String 2: "+str2);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2