返回列表 發帖

資料輸入 (一)

本帖最後由 許婷芳 於 2020-6-6 10:44 編輯

運用套件 java.io 下的 Console 類別, 作字串輸入的練習.
  1. import java.io.Console;  //java的input&output

  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          String str1,str2;
  7.          Console c=System.console();  //把所有輸入的東西放到c裡面
  8.          System.out.print("輸入字串1:");
  9.          str1=c.readLine();  //一行一行讀取
  10.          System.out.print("輸入字串2:");
  11.          str2=c.readLine();
  12.          System.out.println("字串1="+str1);
  13.          System.out.println("字串2="+str2);
  14.     }
  15. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Jian-wei Wang

TOP

此帖僅作者可見

TOP

此帖僅作者可見
蔡少宇

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表