Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <sstream>
- #include <cmath>
- using namespace std;
- int matrixcout(int** matrix, int sizeI, int sizeJ) {
- int sum = 0;
- int maxsum = 0;
- for (int i = 0; i < sizeI; i++){
- for (int j = 0; j < sizeJ; j++) {
- sum = sum + abs(matrix[i][j]);
- }
- if (sum > maxsum) {
- maxsum = sum;
- }
- sum = 0;
- }
- return maxsum;
- }
- void fromfile() {
- bool isIncorrect;
- int** matrix = nullptr;
- int sizeI = 0;
- int sizeJ = 0;
- const string path = "C:\\Users\\Рустамчик\\Desktop\\ЛАБА 2\\Плюсы\\3\\L2_3_D\\input.txt";
- isIncorrect = false;
- ifstream fin(path);
- cout << "Открытие файла..." << endl;
- if (fin.is_open()) {
- fin >> sizeI;
- fin >> sizeJ;
- if (cin.fail() or (sizeI < 1) or (sizeJ < 1)) {
- isIncorrect = true;
- cout << "Данные введены некорректно" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- matrix = new int*[sizeI];
- for (int i = 0; i < sizeI; i++) {
- matrix[i] = new int [sizeJ];
- for (int j = 0; j < sizeJ; j++) {
- fin >> matrix[i][j];
- }
- }
- fin.close();
- }
- else {
- cout << "Ошибка открытия файла" << endl;
- isIncorrect = true;
- }
- fin.close();
- cout << "Вывод матрицы: " << endl;
- for (int i = 0; i < sizeI; i++) {
- ;
- for (int j = 0; j < sizeJ; j++) {
- cout << matrix[i][j] << " ";
- }
- cout << "\n";
- }
- int maxsum = matrixcout(matrix, sizeI, sizeJ);
- cout << "Максимальная сумма модулей элементов в строке: " << maxsum;
- ofstream fout(path, fstream::app);
- cout << "\nЗапись ответа в файл.." << endl;
- if (fout.is_open()) {
- fout << "\nМаксимальная сумма модулей элементов в строке: " << maxsum;
- }
- fout.close();
- delete[] matrix;
- }
- void fromconsole() {
- bool isIncorrect;
- int sizeI = 0;
- int sizeJ = 0;
- int** matrix = nullptr;
- do {
- isIncorrect = false;
- cout << "Введите количество строк в матрице" << endl;
- cin >> sizeI;
- if (cin.fail() or (sizeI < 1)) {
- isIncorrect = true;
- cout << "Данные введены некорректно" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isIncorrect);
- do {
- isIncorrect = false;
- cout << "Введите количество столбцов в матрице" << endl;
- cin >> sizeJ;
- if (cin.fail() or (sizeJ < 1)) {
- isIncorrect = true;
- cout << "Данные введены некорректно" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isIncorrect);
- matrix = new int*[sizeI];
- for (int i = 0; i < sizeI; i++) {
- matrix[i] = new int[sizeJ];
- for (int j = 0; j < sizeJ; j++) {
- do {
- isIncorrect = false;
- cout << "Введите элемент матрицы с адресом " << (i + 1) << "," << (j + 1) << endl;
- cin >> matrix[i][j];
- if (cin.fail()) {
- isIncorrect = true;
- cout << "Данные введены некорректно" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (isIncorrect);
- }
- }
- cout << "Вывод матрицы: " << endl;
- for (int i = 0; i < sizeI; i++) {
- ;
- for (int j = 0; j < sizeJ; j++) {
- cout << matrix[i][j] << " ";
- }
- cout << "\n";
- }
- int maxsum = matrixcout(matrix, sizeI, sizeJ);
- cout << "Максимальная сумма модулей элементов в строке: " << maxsum;
- delete[] matrix;
- }
- int main() {
- setlocale(LC_ALL, "Rus");
- cout << "Данная программа определяет максимальное количество единиц, идущих подряд среди массива чисел." << endl;
- bool isIncorrect;
- string choice;
- cout << "Выберите, откуда должны выводиться данные." << endl;
- do {
- isIncorrect = false;
- cout << "Напишите ONE, если с консоли. TWO, если с файла." << endl;
- cin >> choice;
- if ((choice != "ONE") and (choice != "TWO")) {
- isIncorrect = true;
- cout << "Данные введены некорректно" << endl;
- }
- } while (isIncorrect);
- if (choice == "ONE") {
- fromconsole();
- }
- else {
- fromfile();
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement