Take a char input from the Scanner

前端 未结 22 2644
[愿得一人]
[愿得一人] 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条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-22 05:49

    you just need to write this for getting value in char type.

    char c = reader.next().charAt(0);
    

提交回复
热议问题