-
Notifications
You must be signed in to change notification settings - Fork 0
/
TrianguloSuperiorFUNCIONANDO.cpp
64 lines (44 loc) · 1.13 KB
/
TrianguloSuperiorFUNCIONANDO.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
#include <stdio.h>
#define max 10
int somatoria (int j, int i , double M[][10], double X[]) {
int cont = 0;
int aux = j-1;
//linha de i fixada pois j é i+1 na chamda da função
for ( j=0; j<i; j++) {
cont += M[aux][j] * X[j];
}
return cont;
}
void TriSuperior (int t, double M[][10], double X[], double B[]) {
int i, j;
for(i=t-1 ; i>=0 ; i--) {
if (i==t-1) X[i] = B[i] / M[i][i];
else X[i]= (B[i] - somatoria(i+1, t, M, X)) / M[i][i];
}
}
int main () {
double A[max][max], X[max], B[max];
int i , n, j;
printf("Digite a ordem da matriz: ");
scanf("%d", &n);
printf("\nDigite a matriz %d x %d:\n", n, n);
for(i=0 ; i<n ; i++)
for(j=0 ; j<n ; j++)
scanf("%lf", &A[i][j]);
printf("Digite o vetor B\n");
for(i=0 ; i<n ; i++)
scanf("%lf", &B[i]);
printf("\n\nA matriz inserida foi:");
for (i=0 ; i<n ; i++) {
printf("\n");
for(j=0 ; j<n ; j++)
printf("%.4lf ", A[i][j]);
}
printf("\n\nO vetor B inserido foi: ");
for(i=0 ; i<n ; i++)
printf("%.4lf ", B[i]);
TriSuperior(n, A, X, B);
printf("\n\nO vetor X sera: ");
for(i=0 ; i<n ; i++)
printf("%.4lf ", X[i]);
}