首頁 > Java > java教程 > 在Java中,我們如何從標準輸入讀取資料?

在Java中,我們如何從標準輸入讀取資料?

PHPz
發布: 2023-09-03 22:45:07
轉載
1570 人瀏覽過

在Java中,我們如何從標準輸入讀取資料?

標準輸入(stdin)在Java中可以用System.in來表示。 System.inInputStream 類別的一個實例。這意味著它的所有方法都適用於字節,而不是字串。要從鍵盤讀取任何數據,我們可以使用 Reader 類別Scanner 類別。

範例1

import java.io.*;
public class ReadDataFromInput {
   public static void main (String[] args) {
      int firstNum, secondNum, result;
<strong>      BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
</strong>      try {
         System.out.println("Enter a first number:");
         firstNum = Integer.parseInt(br.readLine());
         System.out.println("Enter a second number:");
         secondNum = Integer.parseInt(br.readLine());
         result = firstNum * secondNum;
         System.out.println("The Result is: " + result);
      } catch (IOException ioe) {
         System.out.println(ioe);
      }
   }
}
登入後複製

輸出

Enter a first number:
15
Enter a second number:
20
The Result is: 300
登入後複製

#範例2

import java.util.*;
public class ReadDataFromScanner {
   public static void main (String[] args) {
      int firstNum, secondNum, result;
<strong>      Scanner scanner = new Scanner(System.in);
</strong>      System.out.println("Enter a first number:");
      firstNum = Integer.parseInt(scanner.nextLine());
      System.out.println("Enter a second number:");
      secondNum = Integer.parseInt(scanner.nextLine());
      result = firstNum * secondNum;
      System.out.println("The Result is: " + result);
   }
}
登入後複製

輸出

Enter a first number:
20
Enter a second number:
25
The Result is: 500
登入後複製

以上是在Java中,我們如何從標準輸入讀取資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板