##画面に入力する命令
今回はScannerを使います。この行を1行目に書きます
import java.util.Scanner;
mainの中に準備をします。
Scanner sc = new Scanner(System.in);
入力を受け取りたいところで受け取って変数に代入します。
int x = sc.nextInt(); //整数を取りたい場合
String s = sc.next(); //文字列を取りたい場合
Go to list of users who liked
More than 3 years have passed since last update.
##画面に入力する命令
今回はScannerを使います。この行を1行目に書きます
import java.util.Scanner;
mainの中に準備をします。
Scanner sc = new Scanner(System.in);
入力を受け取りたいところで受け取って変数に代入します。
int x = sc.nextInt(); //整数を取りたい場合
String s = sc.next(); //文字列を取りたい場合
Register as a new user and use Qiita more conveniently
Go to list of users who liked