java Scannerループ入力
この記事の目的
いつも忘れるので自分用メモ
内容
JavaでScannerで入力させて、希望の数値、文字列以外が入力されるまで入力ループしたい。例外処理は考えないでとりあえず処理だけのメモ。
コード
rupe.java
Scanner scan = new Scanner(System.in);
while(true){
int num = scan.nextInt();
switch(num){
case // 入力してほしい数値:
// 処理内容
break;
default:
continue;
}
break;
}
Author And Source
この問題について(java Scannerループ入力), 我々は、より多くの情報をここで見つけました https://qiita.com/muen_6en/items/fd10ca0724ef58b24922著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .