Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <sstream>
- #include <cmath>
- #include <string>
- using namespace std;
- int exceptionRead(int i) {
- bool isNotCorrect;
- int number;
- number = 0;
- do {
- isNotCorrect = false;
- cout << "Введите " << (i + 1) << " элемент массива" << endl;
- cin >> number;
- if (cin.fail()) {
- isNotCorrect = true;
- cout << "Неверный ввод данных!" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isNotCorrect);
- return number;
- }
- int sizeConsole() {
- bool isNotCorrect;
- int size;
- do {
- isNotCorrect = false;
- cout << "Введите количество элементов в массиве: " << endl;
- cin >> size;
- if (cin.fail() or (size < 1)) {
- isNotCorrect = true;
- cout << "Неверный ввод данных!" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isNotCorrect);
- cout << "Количество элементов: " << size << endl;
- return size;
- }
- void taskEssence() {
- setlocale(LC_ALL, "Rus");
- cout << "Данная программа находит наибольшее количество единиц, идущих подряд среди массива чисел." << endl;
- }
- string pathChoice() {
- string path;
- bool isNotCorrect;
- do {
- isNotCorrect = false;
- cout << "Введите путь к файлу." << endl;
- cin >> path;
- ifstream fin(path);
- if (fin.is_open()) {
- cout << "Файл успешно открыт!" << endl;
- }
- else {
- cout << "Ошибка открытия файла" << endl;
- isNotCorrect = true;
- }
- fin.close();
- } while (isNotCorrect);
- return path;
- }
- int sizeFile(const string& path) {
- int size;
- bool isNotCorrect;
- ifstream fin(path);
- do {
- isNotCorrect = false;
- cout << "Ввод количества элементов массива..." << endl;
- fin >> size;
- if (fin.fail() or (size < 1)) {
- isNotCorrect = true;
- cout << "Данные введены неккоректно. Впишите данные с клавиатуры." << endl;
- fin.clear();
- while (fin.get() != '\n');
- size = sizeConsole();
- }
- } while (isNotCorrect);
- fin.close();
- cout << "Количество элементов массива: " << size << endl;
- return size;
- }
- int* matrixReadFile(const string& path, int size, int* array) {
- ifstream fin(path);
- string line;
- cout << "Запись матрицы..." << endl;
- std::getline(fin, line);
- for (int i = 0; i < size; i++) {
- fin >> array[i];
- if (fin.fail()) {
- cout << "Данные введены неккоректно. Введите значение с клавиатуры." << endl;
- fin.clear();
- while (fin.get() != ' ');
- array[i] = exceptionRead(i);
- }
- }
- return array;
- }
- int arrayCout(int* array, int size) {
- int res;
- int maxRes;
- res = 0;
- maxRes = 0;
- for (int i = 0; i < size; i++) {
- if (array[i] == 1) {
- res++;
- }
- else {
- if (maxRes < res) {
- maxRes = res;
- res = 0;
- }
- else {
- res = 0;
- }
- }
- }
- delete[] array;
- return maxRes;
- }
- void output(int result) {
- string path;
- cout << "Максимальное количество единиц, идущих подряд в массиве: " << result << endl;
- bool isNotCorrect;
- do {
- isNotCorrect = false;
- cout << "Введите путь к файлу для вывода." << endl;
- cin >> path;
- ofstream fout(path, fstream::app);
- if (fout.is_open()) {
- cout << "Файл успешно открыт!" << endl;
- fout << "Максимальное количество единиц, идущих подряд в массиве: " << result << endl;
- }
- else {
- cout << "Ошибка открытия файла" << endl;
- isNotCorrect = true;
- }
- fout.close();
- cout << "Ответ записан в файл." << endl;
- } while (isNotCorrect);
- }
- int fromFile(int* array) {
- string path;
- int size;
- int maxRes;
- maxRes = 0;
- cout << "При записи данных из файла, учтите, что на первой строке написано количество элементов массива, а далее с следующей строки через пробел сам массив" << endl;
- path = pathChoice();
- size = sizeFile(path);
- array = new int[size];
- array = matrixReadFile(path, size, array);
- maxRes = arrayCout(array, size);
- return maxRes;
- }
- int* arrayReadConsole(int* array, int size) {
- bool isNotCorrect;
- for (int i = 0; i < size; i++) {
- do {
- isNotCorrect = false;
- cout << "Введите " << (i + 1) << " элемент массива" << endl;
- cin >> array[i];
- if (cin.fail()) {
- isNotCorrect = true;
- cout << "Неверный ввод данных!" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isNotCorrect);
- }
- return array;
- }
- int fromConsole(int* array) {
- int size;
- int maxRes;
- maxRes = 0;
- size = sizeConsole();
- array = new int[size];
- array = arrayReadConsole(array, size);
- maxRes = arrayCout(array, size);
- return maxRes;
- }
- int sourceChoice(int* array) {
- int choiceNumber;
- bool isNotCorrect;
- int maxRes;
- cout << "Выберите, откуда будут выводиться данные: " << endl;
- do {
- isNotCorrect = false;
- cout << "Введите 0, если с консоли; введите 1, если с файла." << endl;
- cin >> choiceNumber;
- if (cin.fail() or ((choiceNumber != 0) and (choiceNumber != 1))) {
- isNotCorrect = true;
- cout << "Данные введены неккоректно" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isNotCorrect);
- if (choiceNumber == 0) {
- maxRes = fromConsole(array);
- }
- else {
- maxRes = fromFile(array);
- }
- return maxRes;
- }
- int main() {
- int* array;
- int maxRes;
- array = nullptr;
- taskEssence();
- maxRes = sourceChoice(array);
- output(maxRes);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement