как понять какой тип пользовательского ввода - PullRequest
0 голосов
/ 12 февраля 2020

Я пытаюсь понять, какой тип пользовательского ввода, будь то число, символ или строка. как я могу выполнить задание в комментарии?

public static void main(String[] args) {
        Calculator calculator=null; 
        Scanner num = new Scanner(System.in);
        System.out.println("press C to clear.  press E to terminate. ");
        while (true) {
                String input = num.nextLine();
                UserInputHandler.handleuserinput(input, calculator);
// if the input is a number do some thing.
//if the input is a character do some thing else.
   }
}
...