標題:
資料輸入 (一)
[打印本頁]
作者:
鄭繼威
時間:
2022-8-27 00:52
標題:
資料輸入 (一)
本帖最後由 鄭繼威 於 2023-4-12 20:31 編輯
運用套件 java.io 下的 Console 類別, 作字串輸入的練習.
(就像C++的iostream)
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("輸入字串一: ");
str2=c.readLine("輸入字串二: ");
System.out.println("字串一: "+str1);
System.out.println("字串二: "+str2);
}
}
複製代碼
作者:
鍾易澄
時間:
2022-8-27 10:53
此帖僅作者可見
作者:
許宸瑀
時間:
2022-8-27 10:57
此帖僅作者可見
作者:
高昀昊
時間:
2022-8-27 10:58
此帖僅作者可見
作者:
孫子傑
時間:
2022-8-27 11:02
此帖僅作者可見
作者:
許馹東
時間:
2022-8-27 11:06
此帖僅作者可見
作者:
曾善勤
時間:
2022-8-27 11:07
此帖僅作者可見
作者:
郭博鈞
時間:
2022-8-27 11:07
此帖僅作者可見
作者:
田家齊
時間:
2022-8-27 11:09
此帖僅作者可見
作者:
柳侑辰
時間:
2022-8-27 11:09
此帖僅作者可見
作者:
林紘憲
時間:
2022-8-27 11:42
此帖僅作者可見
作者:
高鋐鈞
時間:
2022-8-29 22:02
此帖僅作者可見
作者:
利勁鋼
時間:
2022-9-17 11:00
此帖僅作者可見
作者:
黃睿宥
時間:
2023-4-8 17:26
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2