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;
- import java.util.ArrayList;
- public class Main {
- private static final Scanner scan = new Scanner(System.in);
- private static int count = 0;
- private static ArrayList <String> partitionNumberList = new ArrayList<>();
- private static void printCondition() {
- System.out.println("Данная программа выведет разбиения числа и найдёт их количество");
- }
- private static boolean tryConvertStringToInteger (String num, int min, int max) {
- int n;
- boolean isCorrect;
- n = 0;
- isCorrect = true;
- try {
- n = Integer.parseInt(num);
- }
- catch (Exception err) {
- isCorrect = false;
- }
- if (isCorrect && (n < min || n > max))
- isCorrect = false;
- return isCorrect;
- }
- private static int readChoice(){
- int n;
- boolean isCorrect;
- n = 0;
- do {
- isCorrect = true;
- try {
- n = Integer.parseInt(scan.nextLine());
- }
- catch (Exception err) {
- System.out.println("Вы ввели некорректные данные. Попробуйте снова");
- isCorrect = false;
- }
- if (isCorrect && (n < 1 || n > 2)) {
- System.out.println("Введено значение не входящее в диапазон допустимых значений");
- isCorrect = false;
- }
- } while (!isCorrect);
- return n;
- }
- private static int chooseInputMethod() {
- int choice;
- System.out.println("Выберите вариант ввода:");
- System.out.println("1.Ввод из консоли");
- System.out.println("2.Ввод из файла");
- choice = readChoice();
- return choice;
- }
- private static boolean checkFile(String path) {
- final int MIN = 0, MAX = 20;
- String tempNum;
- File checkFile;
- boolean isFileCorrect;
- tempNum = "";
- checkFile = new File(path);
- isFileCorrect = true;
- 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)) {
- if (!fileScan.hasNextLine()) {
- isFileCorrect = false;
- System.out.println("Файл пустой! Внесите изменения в файл и повторите попытку:");
- }
- if (isFileCorrect) {
- tempNum = fileScan.nextLine();
- isFileCorrect = tryConvertStringToInteger(tempNum, MIN, MAX);
- if (!isFileCorrect)
- System.out.println("Данные в файле некорректны! Внесите изменения и повторите попытку!");
- }
- }
- catch (FileNotFoundException e) {
- System.out.println("Файл по данному пути не существует! Пожалуйста проверьте файл и введите путь заново:");
- isFileCorrect = false;
- }
- }
- return isFileCorrect;
- }
- private static void outputToFile(int number) {
- 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)) {
- for(String partition : partitionNumberList) {
- writer.write(partition + "\n");
- }
- }
- }
- else {
- System.out.println("Файл доступен только для чтения!");
- isFileIncorrect = true;
- }
- }
- else {
- outputFile.createNewFile();
- try (FileWriter writer = new FileWriter(outputFile)) {
- for(String partition : partitionNumberList) {
- writer.write(partition);
- }
- }
- }
- }
- catch (IOException e) {
- System.out.println("Не удалось вывести в файл!");
- isFileIncorrect = true;
- }
- } while (isFileIncorrect);
- System.out.println("Вывод данных... успешно!");
- }
- private static int readNum(int min, int max) {
- boolean isCorrect;
- String num;
- do {
- num = scan.nextLine();
- isCorrect = tryConvertStringToInteger(num, min, max);
- if (!isCorrect)
- System.out.println("Вы ввели некорректные данные! Попробуйте снова:");
- } while (!isCorrect);
- return Integer.parseInt(num);
- }
- private static String inputNumberFromFile() {
- String pathFile;
- boolean isInputFromFileSuccessfully;
- System.out.println("Данные в файле должны содержать число (от 1 до 20)");
- do {
- System.out.print("Введите путь к файлу и его имя с его расширением:");
- pathFile = scan.nextLine();
- isInputFromFileSuccessfully = checkFile(pathFile);
- } while(!isInputFromFileSuccessfully);
- return pathFile;
- }
- private static int readFile (Scanner fileScan) {
- String num;
- num = fileScan.nextLine();
- return Integer.parseInt(num);
- }
- private static int chooseOutputMethod() {
- int choice;
- System.out.println("Выберите вариант вывода:");
- System.out.println("1.Вывод в консоль");
- System.out.println("2.Вывод в файл");
- choice = readChoice();
- return choice;
- }
- public static void partitionNumberToFile(int number, int maximum, String prefix) {
- String strNumb = "";
- if (number == 0) {
- count++;
- partitionNumberList.add(prefix);
- } else {
- if (maximum > number)
- maximum = number;
- for (int i = 1; i <= maximum; i++) {
- strNumb = "" + i;
- partitionNumberToFile(number - i, i, prefix + strNumb + " ");
- }
- }
- }
- public static void partitionNumberToConsole(int number, int maximum, String prefix) {
- String strNumb = "";
- if (number == 0) {
- System.out.println(prefix);
- count++;
- } else {
- if (maximum > number)
- maximum = number;
- for (int i = 1; i <= maximum; i++) {
- strNumb = "" + i;
- partitionNumberToConsole(number - i, i, prefix + strNumb + " ");
- }
- }
- }
- public static void main(String[] args) {
- final int MIN = 0, MAX = 20;
- String path;
- int choice, number;
- File file;
- number = 0;
- printCondition();
- choice = chooseInputMethod();
- if (choice == 1){
- System.out.println("Введите число для разбиения(от 1 до 20)");
- number = readNum(MIN, MAX);
- }
- else {
- path = inputNumberFromFile();
- file = new File(path);
- try (Scanner fileScan = new Scanner(file)) {
- number = readFile(fileScan);
- }
- catch (FileNotFoundException e) {
- System.out.println("Файл по данному пути не существует. Пожалуйста проверьте файл и введите путь заново:");
- }
- }
- choice = chooseOutputMethod();
- if (choice == 1){
- partitionNumberToConsole(number, number, "");
- }
- else {
- partitionNumberToFile(number, number, "");
- outputToFile(number);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement