我将如何将像“905 123 7023”这样的整数更改为像“9051237023”这样的整数。
该分配应该确定输入的电话号码是否是真实的电话号码。
我打算用这个:
int phoneNumber;
// Code that turns number with spaces into single number
try {
System.out.println("Please input an integer");
input = TextIO.getlnInt();
}
catch (InputMismatchException exception) {
System.out.println("This is not an phone number");
}
确定代码