Take a char input from the Scanner

前端 未结 22 2248
[愿得一人]
[愿得一人] 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:56

    Setup scanner:

    reader.useDelimiter("");
    

    After this reader.next() will return a single-character string.

提交回复
热议问题