Advertisement
dxvmxnd

Untitled

Mar 5th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. System.out.println("Выберите, откуда будут вводиться данные: ");
  2. do {
  3. isIncorrect = false;
  4. System.out.println("Введите 0, если с консоли; 1, если с файла");
  5. try {
  6. choiceNumber = Integer.parseInt(scanner.nextLine());
  7. } catch (NumberFormatException exception) {
  8. isIncorrect = true;
  9. System.err.println("Неверный ввод данных!");
  10. }
  11. if (((choiceNumber != 0) && (choiceNumber != 1)) || (isIncorrect)) {
  12. isIncorrect = true;
  13. System.err.println("Число должно быть или 0, или 1");
  14. }
  15. } while (isIncorrect);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement