Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <fstream>
- using namespace std;
- int inputValue(int min, int max);
- void userInputArrayFromConsole(int n);
- void userInputFromConsole();
- double** swap(double** matrix);
- void userInputFromFile(string path);
- bool checkPath(string path);
- void userInputPath();
- void inputMethod();
- void printWithoutPath(double** matrix);
- string userOutputPath();
- void printWithPath(double** matrix);
- void outputMethod(double** matrix);
- int inputValue(int min, int max) {
- int currentValue;
- bool isNotValid = true;
- do {
- std::cin >> currentValue;
- if (currentValue >= min && currentValue <= max)
- isNotValid = false;
- else
- std::cout << "Введите число в заданном диапазоне\n";
- } while (isNotValid);
- return currentValue;
- }
- void userInputArrayFromConsole(int n) {
- const int MIN_VALUE = -500;
- const int MAX_VALUE = 500;
- double** matrix = new double* [n];
- cout << "Введите элементы массива в диапазоне " << MIN_VALUE << ".." << MAX_VALUE << ":" << endl;
- for (int i = 0; i < n; i++) {
- matrix[i] = new double[n];
- for (int j = 0; j < n; j++) {
- matrix[i][j] = inputValue(MIN_VALUE, MAX_VALUE);
- }
- }
- outputMethod(swap(matrix));
- }
- void userInputFromConsole() {
- const int MIN_SIZE = 1;
- const int MAX_SIZE = 20;
- int n;
- cout << "Введите порядок матрицы 2n в диапазоне " << MIN_SIZE << ".." << MAX_SIZE << ": ";
- n = inputValue(MIN_SIZE, MAX_SIZE);
- userInputArrayFromConsole(n);
- }
- double** swap(double** matrix) {
- int n = _msize(matrix) / sizeof(matrix) - 1;
- int n1 = n / 2;
- for (int i = 0; i <= n1; i++)
- for (int j = 0; j <= n; j++) {
- double temp = matrix[i][j];
- matrix[i][j] = matrix[n1 + i + 1][j];
- matrix[n1 + i + 1][j] = temp;
- }
- for (int i = 0; i <= n1; i++)
- for (int j = 0; j <= n1; j++) {
- double temp = matrix[i][j];
- matrix[i][j] = matrix[i][n1 + j + 1];
- matrix[i][n1 + j + 1] = temp;
- }
- return matrix;
- }
- void userInputFromFile(string path) {
- int n;
- ifstream file(path);
- file.open(path);
- file.clear();
- file >> n;
- double** matrix = new double*[n];
- for (int i = 0; i < n; i++) {
- matrix[i] = new double[n];
- for (int j = 0; j < n; j++)
- file >> matrix[i][j];
- }
- file.close();
- outputMethod(swap(matrix));
- }
- bool checkPath(string path) {
- ifstream file(path);
- if (file.is_open()) {
- cout << path << " найден" << endl;
- return true;
- }
- else {
- cout << path << " не найден" << endl;
- return false;
- }
- }
- void userInputPath() {
- string path;
- bool isNotValid = false;
- do {
- std::cout << "Введите абсолютный путь к файлу с входными данными" << endl;
- std::cin >> path;
- } while (!checkPath(path));
- userInputFromFile(path);
- }
- void inputMethod() {
- int method;
- std::cout << "Каким способом хотите ввести данные?" << std::endl;
- std::cout << "1 - с помощью консоли" << std::endl;
- std::cout << "2 - с помощью файла" << std::endl;
- do {
- std::cin >> method;
- switch (method) {
- case 1: { userInputFromConsole(); break; }
- case 2: { userInputPath(); break; }
- default: std::cout << "Введите корректный способ ввода";
- }
- } while (method != 2 && method != 1);
- }
- void printWithoutPath(double** matrix) {
- for (int i = 0; i < _msize(matrix) / sizeof(matrix); i++) {
- for (int j = 0; j < _msize(matrix) / sizeof(matrix); j++)
- cout << matrix[i][j] << " ";
- cout << endl;
- }
- }
- string userOutputPath() {
- string path;
- cout << "Введите абсолютный путь к файлу для вывода результата" << endl;
- cin >> path;
- cout << "Результат работа помещён в файл";
- return path;
- }
- void printWithPath(double** matrix) {
- string path = userOutputPath();
- ofstream file(path);
- for (int i = 0; i < _msize(matrix) / sizeof(matrix); i++) {
- for (int j = 0; j < _msize(matrix) / sizeof(matrix); j++)
- file << matrix[i][j] << " ";
- file << endl;
- }
- }
- void outputMethod(double** matrix) {
- int method;
- std::cout << "Куда хотите вывести результат?" << std::endl;
- std::cout << "1 - в консоль" << std::endl;
- std::cout << "2 - в файл" << std::endl;
- do {
- std::cin >> method;
- switch (method) {
- case 1: { printWithoutPath(matrix); break; }
- case 2: { printWithPath(matrix); break; }
- default: std::cout << "Введите корректный способ ввода";
- }
- } while (method != 2 && method != 1);
- }
- void printTask() {
- cout << "Данная программа в матрице порядка 2n меняет местами подматрицы порядка n" << endl;
- cout << "1 2" << endl;
- cout << "3 4" << endl;
- cout << "---" << endl;
- cout << "4 3" << endl;
- cout << "1 2" << endl;
- }
- int main()
- {
- setlocale(LC_ALL, "Russian");
- printTask();
- inputMethod();
- }
- //D:\input.txt
- //D:\output.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement