Scanner 輸入---從鍵盤輸入兩個數進行相加
阿新 • • 發佈:2018-02-17
ann author static 個數 程序 alt com 等待 util
1 import java.util.Scanner;//scanner 是包含在Java.util中的;使用的時候需要調用 2 3 /** 4 * 測試Scanner類的使用、如何接受鍵盤的輸入 5 * @author ZBG34854 6 * 7 */ 8 public class TestScanner { 9 public static void test01(){ 10 Scanner s = new Scanner(System.in); 11 String str = s.next();//程序運行到next會阻塞,等待鍵盤的輸入;12 System.out.println("剛才鍵盤輸入:"+str); 13 } 14 public static void test02(){ 15 Scanner s = new Scanner(System.in); 16 System.out.println("請輸入一個加數:"); 17 int a = s.nextInt(); 18 System.out.println("請輸入被加數:"); 19 int b = s.nextInt(); 20 intsum = a + b; 21 System.out.println("計算結果:"+sum); 22 } 23 public static void main(String[] args){ 24 test02(); 25 } 26 27 }
Scanner 輸入---從鍵盤輸入兩個數進行相加