我想在 Java 中将输入作为字符串并使用 try catch 限制用户不输入整数。
import java.util.*;
public class trycatch {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
String a;
System.out.println("\n\nEnter the name");
try {
a=sc.nextLine();
System.out.println("You name is "+a);
}
catch(InputMismatchException b) {
System.out.println("There is problem with your input");
}
}
}
蝴蝶刀刀
萧十郎
心有法竹
相关分类