Integer n = 0;
System.out.println(n instanceof Integer);
System.out.println(n instanceof Number);
System.out.println(n instanceof Object);
System.out.println(n instanceof Double); // Ошибка
System.out.println("Строка" instanceof String);public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int result = 0; // хотим ввести с клавиатуры целое число
boolean correct = false;
System.out.println("Введите целое число");
while (!correct) {
try {
String inp = sc.nextLine(); // вводим строку с клавиатуры
result = Integer.parseInt(inp); // пытаемся преобразовать её к целому числу
correct = true; // если удалось
} catch (NumberFormatException e) { // если не удалось
System.out.println("Неправильный ввод, введите заново");
}
}
System.out.println("Результат: " + result);
} export async function fetchChannelList() {
return await axios.get<ISelectOption[]>('/channels');
}Listens for HTTP GET on the passed path to be used as a routing condition. The content of the provided directory will be served.