0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Java】標準入力から値を取得する方法

Last updated at Posted at 2021-01-30

【コード】

import java.util;

public calss Main {
   public static void main(String[] args) {
       Scanner sc = new Scanner(System.in);
       String data = sc.next();
 }
}

【解説】
標準入力を使うと、ファイルからデータを読み込んだり、データを受け取ることができます。
Javaで標準入力からデータを取得するには、Scannerを用います。

これを

public calss Main {
   public static void main(String[] args) {
      
  }
}

の中に記述します。
ちなみに、このコードはシステムを動かすための雛形のようなものです。

次に記述内容ですが、

Scanner sc = new Scanner(System.in);

でScannerを宣言し、

String data = sc.next();

data変数へと代入します。

もし出力したければ、

System.out.println(data);

をメソッド内の最後の行に記述しましょう

*import java.util; はデータを読み込むためのライブラリです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?