问题遇到的现象和发生背景
Exception in thread "main" java.util.InputMismatchException
Exception in thread "main" java.util.InputMismatchException
接收输入的方法和输入的类型不对
你用的是nextInt()方法吧,只能输入整数,不能输入字符串。
nextInt()://输入整数
int a = sc.nextInt();
nextLine()
nextLine();//字符串
string s = sc.nextLine();//遇空格可继续
next()
next():
string s = sc.next();//以空格作为分隔符