標題:
資料輸入 (一) - Console 類別
[打印本頁]
作者:
tonyh
時間:
2017-1-21 10:20
標題:
資料輸入 (一) - Console 類別
本帖最後由 tonyh 於 2017-1-21 11:37 編輯
試使用 Console 類別,輸入兩組字串。
import java.io.Console; //引入 java.io 套件下的 Console 類別
public class ch05
{
public static void main(String args[])
{
String str1, str2;
Console c=System.console(); //在Console類別下建立一名為c的實體物件,將System類別下console()方法所回傳的console物件丟入
System.out.print("輸入第一個字串: ");
str1=c.readLine(); //使用readLine()方法來抓取自鍵盤輸入的字串
System.out.print("輸入第二個字串: ");
str2=c.readLine();
System.out.println("剛輸入的第一個字串: "+str1);
System.out.println("剛輸入的第二個字串: "+str2);
}
}
複製代碼
作者:
黃茂勛
時間:
2017-1-21 11:19
import java.io.Console;
public class Ch04
{
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);
}
}
複製代碼
作者:
陸長辰
時間:
2017-1-21 11:25
import java.io.Console;
public class Ch04
{
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);
}
}
複製代碼
作者:
陳泓瑜
時間:
2017-1-21 11:31
import java.io.Console;
public class Ch05
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
System.out.print("輸入字串1:");
str1=c.readLine();
System.out.print("字串1:"+str1);
System.out.println("輸入字串2:");
str2=c.readLine();
System.out.print("字串2:"+str2);
}
}
複製代碼
作者:
林侑成
時間:
2017-1-25 16:29
import java.io.Console;
public class Edit1
{
public static void main(String args[])
{
String str1,str2;
Console c=System.console();
System.out.print("Enter 1:");
str1=c.readline();
System.out.print("Enter 2:");
str2=c.readline();
System.out.print("Enter 1:"+str1);
System.out.print("Enter 2:"+str2);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2