標題:
資料輸入 (一)
[打印本頁]
作者:
鄭繼威
時間:
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);
}
}
複製代碼
作者:
李彣
時間:
2023-4-12 21:19
本帖最後由 李彣 於 2023-4-19 16:03 編輯
import java.io.Console;
public class B
{
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);
}
}
複製代碼
作者:
黃裕恩
時間:
2023-4-15 00:01
import java.io.Console;
public class Ch06
{
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);
}
}
複製代碼
作者:
林劭杰
時間:
2023-4-19 19:23
import java.io.Console;
public class DVG
{
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);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2