close

image

重點

Scanner scanner = new Scanner(System.in);
 
Scanner是一個用來取得輸入資料的物件,也就是說,你透過鍵盤所輸入的資料,是需要透過這個類型為Scanner,名稱為scanner的東西來擷取的。後面的new Scanner(System.in)是用來初始化該變數的。
 
System.out.print("請輸入一個數字:");
System.out.printf("你輸入的數字為: %d", scanner.nextInt();
 
System.out.print("輸出字串"),這個函式可以提供最基本的文字輸出。
 
除了直接印出字串外,另外一個比較特別的是,你可以指定輸入的變數來做為輸出,
 
%d表示一個整數,也就是說,會印出一個數字,而這個數字為何,由逗號後方的部份決定,你可以在這邊打上一個變數名稱(當然,必須是整數類型的變數),或者是用函式來表現(scanner.nextInt()這個函示會取出輸入的整數)。

說明

可讓使用者輸入一個數字,然後將該數字印出的小程式。

程式碼

import java.util.Scanner;
 
public class GetInput {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.print("請輸入一個數字:");
        System.out.printf("你輸入的數字為: %d", scanner.nextInt());
    }
}
 

結果

https://sites.google.com/a/mis.nsysu.edu.tw/cheng-shi-zi-xun-wang/java-ee-ji-chu-pian/ji-ben-shu-ru-shu-chu

arrow
arrow
    創作者介紹
    創作者 STORY 的頭像
    STORY

    STORY

    STORY 發表在 痞客邦 留言(0) 人氣()