Advertisement
Guest User

source z

a guest
Dec 9th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include "M_Array.h"
  4. #include <string>
  5.  
  6.  
  7. using namespace std;
  8.  
  9. void main(void) {
  10.     setlocale(LC_ALL, "Russian");
  11.     string nazv = "Z:\\Скобелкин Захар\\Основы програмирования\\pract13\\Project1\\Project1\\Data.txt";
  12.     string nazv2 = "Z:\\Скобелкин Захар\\Основы програмирования\\pract13\\Project1\\Project1\\Data_Out.txt";
  13.     int arr1[5][5];
  14.     int m = 5, n = 5;
  15.     input_matr(nazv,arr1,m,n);
  16.     print_matr(arr1, m, n);
  17.     print_matr(nazv2,arr1, m, n);
  18.  
  19.     system("pause");
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement