Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.File;
- import java.io.FileNotFoundException;
- import java.io.FileWriter;
- import java.io.IOException;
- import java.util.Scanner;
- public class Main {
- private static final Scanner scan = new Scanner(System.in);
- private static void printCondition() {
- System.out.println("Данная программа определит номер позиции k-го вхождения строки st2 в строку st1. Если такого нет, возвратит -1.");
- }
- private static int readNum(int min, int max) {
- int n;
- boolean isIncorrect;
- n = 0;
- do {
- isIncorrect = false;
- try {
- n = Integer.parseInt(scan.nextLine());
- }
- catch (Exception err) {
- System.out.println("Вы ввели некорректные данные. Попробуйте снова");
- isIncorrect = true;
- }
- if (!isIncorrect && (n < min || n > max)) {
- System.out.println("Введено значение не входящее в диапазон допустимых значений");
- isIncorrect = true;
- }
- } while (isIncorrect);
- return n;
- }
- private static String inputNum() {
- int choice;
- String num;
- System.out.println("Выберите вариант ввода:");
- System.out.println("1.Ввод из консоли");
- System.out.println("2.Ввод из файла");
- choice = readNum(1, 2);
- if (choice == 1) {
- num = inputNumFromConsole();
- }
- else {
- num = inputNumFromFile();
- }
- return num;
- }
- private static String inputNumFromConsole() {
- String num;
- String enabledSimbols;
- boolean isCorrect;
- int index;
- enabledSimbols = "0123456789";
- System.out.println("Введите число ");
- do {
- isCorrect = true;
- num = scan.nextLine();
- if (num.charAt(0) == '0') {
- isCorrect = false;
- System.out.println("Введите натуральное число!");
- }
- for (int i = 0; i < num.length() && isCorrect; i++) {
- index = enabledSimbols.indexOf(num.charAt(i));
- if (index == -1) {
- isCorrect = false;
- System.out.println("Введите натуральное число!");
- }
- }
- } while (!isCorrect);
- return num;
- }
- private static String inputNumFromFile() {
- String pathFile;
- String num;
- boolean isInputFromFileSuccessfully;
- System.out.println("Данные в файле должны содержать число");
- do {
- System.out.print("Введите путь к файлу и его имя с его расширением:");
- pathFile = scan.nextLine();
- isInputFromFileSuccessfully = checkFile(pathFile);
- } while(!isInputFromFileSuccessfully);
- num = readFile(pathFile);
- return num;
- }
- private static boolean checkFile(String path) {
- String checkNum, enabledSimbols;
- File checkFile;
- int index;
- boolean isFileCorrect;
- StringBuilder builderOfText;
- checkFile = new File(path);
- isFileCorrect = true;
- enabledSimbols = "0123456789";
- if (!checkFile.isFile()) {
- System.out.println("Файл не найден! Пожалуйста проверьте существование файла и введите путь заново");
- isFileCorrect = false;
- }
- if (isFileCorrect && !checkFile.canRead() ) {
- System.out.println("Файл не может быть прочитан! Пожалуйста проверьте файл и введите путь заново");
- isFileCorrect = false;
- }
- if (isFileCorrect) {
- try (Scanner fileScan = new Scanner(checkFile)) {
- checkNum = fileScan.nextLine();
- if (checkNum.isBlank()) {
- isFileCorrect = false;
- System.out.println("Файл пустой! Внесите изменения в файл и повторите попытку!");
- }
- if (fileScan.hasNext()) {
- isFileCorrect = false;
- System.out.println("Данные в файле некорректны!");
- }
- for (int i = 0; i < checkNum.length() && isFileCorrect; i++) {
- index = enabledSimbols.indexOf(checkNum.charAt(i));
- if (index == -1) {
- isFileCorrect = false;
- System.out.println("Данные в файле некорректны!");
- }
- }
- }
- catch (FileNotFoundException e) {
- System.out.println("Файл по данному пути не существует! Пожалуйста проверьте файл и введите путь заново");
- isFileCorrect = false;
- }
- }
- return isFileCorrect;
- }
- private static String readFile(String path) {
- String num;
- File file;
- num = "";
- file = new File(path);
- try (Scanner fileScan = new Scanner(file)) {
- num = fileScan.nextLine();
- }
- catch (FileNotFoundException e) {
- System.out.println("Файл по данному пути не существует. Пожалуйста проверьте файл и введите путь заново");
- }
- return num;
- }
- private static boolean checkNumber(String num, int sum) {
- if (num.isEmpty()) {
- return (sum % 9 == 0);
- }
- else {
- sum += Character.getNumericValue(num.charAt(0));
- num = num.substring(1);
- return checkNumber(num,sum);
- }
- }
- private static void outputAnswer(String verdict) {
- int choice;
- System.out.println("Выберите вариант вывода:");
- System.out.println("1.Вывод в консоль");
- System.out.println("2.Вывод в файл");
- choice = readNum(1, 2);
- if (choice == 1) {
- outputAnswerToConsole(verdict);
- }
- else {
- outputAnswerToFile(verdict);
- }
- }
- private static void outputAnswerToConsole(String answer) {
- System.out.print(answer);
- }
- private static void outputAnswerToFile(String answer) {
- String path;
- boolean isFileIncorrect;
- System.out.println("Для вывода введите путь к файлу.");
- System.out.println("Если файл отсутствует то он будет создан автоматически по указанному пути или в корневой папке программы (по умолчанию)");
- do {
- isFileIncorrect = false;
- System.out.print("Введите путь к файлу и его имя c расширением: ");
- path = scan.nextLine();
- File outputFile = new File(path);
- try {
- if (outputFile.isFile()) {
- if (outputFile.canWrite()) {
- try (FileWriter writer = new FileWriter(outputFile)) {
- writer.write(answer);
- }
- }
- else {
- System.out.println("Файл доступен только для чтения!");
- isFileIncorrect = true;
- }
- }
- else {
- outputFile.createNewFile();
- try (FileWriter writer = new FileWriter(outputFile)) {
- writer.write(answer);
- }
- }
- }
- catch (IOException e) {
- System.out.println("Не удалось вывести в файл!");
- isFileIncorrect = true;
- }
- } while (isFileIncorrect);
- System.out.println("Вывод данных... успешно!");
- scan.close();
- }
- public static void main(String[] args) {
- String num;
- String answer;
- int sum;
- sum = 0;
- printCondition();
- num = inputNum();
- if (checkNumber(num,sum))
- answer = "Делится на 9 без остатка";
- else
- answer = "Не делится на 9 без остатка";
- outputAnswer(answer);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement