Take a char input from the Scanner

前端 未结 22 2286
[愿得一人]
[愿得一人] 2020-11-22 05:16

I am trying to find a way to take a char input from the keyboard.

I tried using:

Scanner reader = new Scanner(System.in);
char c = reade         


        
22条回答
  •  旧时难觅i
    2020-11-22 05:53

    Just use...

    Scanner keyboard = new Scanner(System.in);
    char c = keyboard.next().charAt(0);
    

    This gets the first character of the next input.

提交回复
热议问题