-
Notifications
You must be signed in to change notification settings - Fork 0
/
exemplo mat-obj.cpp
84 lines (66 loc) · 1.67 KB
/
exemplo mat-obj.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
UFRJ
IM/DMA
TMAB 2016.1
Prof. Milton Ramirez (c)
Programa: Matrizes com Objetos (aula I)
Data: 04/05/2016
*/
#include <iostream>
#include <fstream>
using namespace std;
struct TMatriz {
unsigned m,n;
float a[100][100];
TMatriz(unsigned pm=0, unsigned pn=0) : m(pm), n(pn) {}
void Print(void);
void LeMatrizDeArquivo(string);
//Soma(???);
};
void TMatriz::Print(void)
{
for ( unsigned i = 0 ; i < m ; i++) {
for (unsigned j = 0; j < n; j++ ) cout << a[i][j] << " ";
cout << endl;
}
cout << endl;
}
void TMatriz::LeMatrizDeArquivo(string nome_arquivo_entrada)
{
ifstream arq(nome_arquivo_entrada.c_str());
if ( !arq.good() ) cout << "problema ao abrir o arquivo: " << nome_arquivo_entrada << endl;
else {
arq >> m >> n;
for ( unsigned i = 0 ; i < m ; i++)
for (unsigned j = 0; j < n; j++ ) arq >> a[i][j];
}
}
void SomaM(TMatriz A, TMatriz B, TMatriz & C)
{
//C = A + B;
if ( A.m == B.m ) C.m = A.m;
else {
cout << "Matrizes soma incompativeis!" << endl;
return;
}
if ( A.n == B.n ) C.n = A.n;
else {
cout << "Matrizes soma incompativeis!" << endl;
return;
}
for ( unsigned i = 0 ; i < C.m ; i++)
for (unsigned j = 0; j < C.n; j++ )
C.a[i][j] = A.a[i][j] + B.a[i][j];
}
int main()
{
cout << "Aula 4: Objeto Matriz, MR2(c)" << endl;
TMatriz A, B, C;
A.LeMatrizDeArquivo("A.mat");
A.Print();
B.LeMatrizDeArquivo("B.mat");
B.Print();
SomaM(A,B,C);
C.Print();
return 0;
}