-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcmat-sobrecarga.cpp
163 lines (139 loc) · 3.84 KB
/
calcmat-sobrecarga.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
UFRJ
IM/DMA
TMAB 2016.1
Prof. Milton Ramirez (c)
Programa: Estudo Dirigido II - Classe Matriz
Data: 10/05/2016
*/
#include <iostream>
#include <fstream>
using namespace std;
class Matriz {
public:
unsigned m,n;
float a[100][100];
Matriz(unsigned pm=0, unsigned pn=0) : m(pm), n(pn) {}
Matriz(string);
void Print(void);
void GravaMatriz(string);
Matriz operator +(Matriz B);
Matriz operator -(Matriz B);
Matriz operator *(Matriz B);
};
Matriz::Matriz(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];
}
}
Matriz Matriz::operator +(Matriz B)
{
Matriz C;
if ( m == B.m && n == B.n) { C.m = m; C.n = n; }
else {
cout << "Matrizes soma incompativeis!" << endl;
return C;
}
for ( unsigned i = 0 ; i < C.m ; i++)
for (unsigned j = 0; j < C.n; j++ )
C.a[i][j] = a[i][j] + B.a[i][j];
return C;
}
Matriz Matriz::operator -(Matriz B)
{
Matriz C;
if ( m == B.m && n == B.n) { C.m = m; C.n = n; }
else {
cout << "Matrizes soma incompativeis!" << endl;
return C;
}
for ( unsigned i = 0 ; i < C.m ; i++)
for (unsigned j = 0; j < C.n; j++ )
C.a[i][j] = a[i][j] - B.a[i][j];
return C;
}
Matriz Matriz::operator *(Matriz B)
{
Matriz C;
unsigned k;
float cij;
if ( n == B.m ) { C.m = m; C.n = B.n; }
else {
cout << "Matrizes produto incompativeis!" << endl;
return C;
}
for ( unsigned i = 0 ; i < C.m ; i++)
for (unsigned j = 0; j < C.n; j++ )
{
for( k = 0, cij = 0.0; k < n; k++ )
cij += a[i][k]*B.a[k][j];
C.a[i][j] = cij;
}
return C;
}
void Matriz::Print(void)
{
for ( unsigned i = 0 ; i < m ; i++) {
for (unsigned j = 0; j < n; j++ ) cout << a[i][j] << " ";
cout << endl;
}
cout << endl;
}
Matriz operator *(float esc, Matriz B)
{
Matriz C;
C.m = B.m; C.n = B.n;
for ( unsigned i = 0 ; i < C.m ; i++)
for (unsigned j = 0; j < C.n; j++ )
C.a[i][j] = esc * B.a[i][j];
return C;
}
void ApresentaMenu(void)
{
cout << "--------------------------------- ^.^ --" << endl;
cout << " 1 - Carrega Matriz A." << endl;
cout << " 2 - Carrega Matriz B." << endl;
cout << " 3 - C = A + B." << endl;
cout << " 4 - C = A - B." << endl;
cout << " 5 - C = a * A." << endl;
cout << " 6 - C = A x B." << endl;
cout << " 7 - C = A^2." << endl;
cout << " 8 - Sai do programa." << endl;
cout << " \n Digite uma opcao." << endl;
}
void menu(void)
{
char opcao;
Matriz A,B,C;
float escalar;
do {
ApresentaMenu();
cin >> opcao;
switch (opcao)
{
case '1' : A = Matriz("A.mat"); A.Print(); break;
case '2' : B = Matriz("B.mat"); B.Print(); break;
case '3' : C = A + B; C.Print(); break;
case '4' : C = A - B; C.Print(); break;
case '5' : cout << "Escalar = "; cin >> escalar;
C = escalar * A; C.Print(); break;
case '6' : C = A * B; C.Print(); break;
case '7' : C = A*A; C.Print(); break;
case '8' : cout << "Saindo....\n"; break;
default : cout << "\tOpcao Invalida!\n";
}
} while ( opcao != '8');
}
int main()
{
cout << "Programa: Estudo Dirigido 02 - MR2(c)" << endl;
menu();
return 0;
}