Курсовая работа: Программирование действий над матрицами на языке С++
for(int x = 0; x < obj.stolbec; x++)
{
stream << obj(y, x) << " ";
}
stream << "\n";
}
return stream;
}
istream &operator>>(istream &stream, _matrix &obj)
{
for(int y = 0; y < obj.stroka; y++)
for(int x = 0; x < obj.stolbec; x++)
stream >> obj(y, x);
return stream;
}
Приложение 2. Исходный код программы. Файлы cpp.
1. main.cpp
#include <iostream>
#include <conio.h>
#include <fstream>
#include "matrix.h"
using std::cout;
using std::ofstream;
using std::ifstream;
using std::cin;
using std::endl;
int primer1(_matrix &, _matrix &);
int primer2(_matrix &);
int primer1(_matrix &_objA, _matrix &_objB)