1
0

More than 1 year has passed since last update.

【Java基礎】入力フォームを使おう

Posted at

[問題]  (参照:http://www.cc.kyoto-su.ac.jp/~mmina/bp1/hundredKnocksBasic.html)
数値を入力させ、その入力値を表示するプログラムを作成しなさい。

コード

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        System.out.println(t);
    }
}

↓ 入力フォームに「56」と入力

結果

56

文字列の場合は

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        String t = sc.next();//intがStringに、nextIntがnextになる
        System.out.println(t);
    }
}

少し異なるので注意。

★import java.util.*; =これから使用する関数を宣言
★Scanner =入力フォームの値を持ってくる

1
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
1
0