-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.3.cpp
95 lines (47 loc) · 1.21 KB
/
1.3.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
#include <iostream>
#include <fstream>
using namespace std;
int def_2x2(int mat[2][2]);
int def_3x3(int mat[3][3]);
void read_file();
void write_def();
const char* inpath="in.txt";
const char* outpath="out.txt"; //пути к файлу
int arr[3][3];
int main()
{
//создание динамического массива 3x3
read_file();
write_def();
return 0;
}
int def_3x3(int mat[3][3])
{ //детерминант для 3х3 массива
return (mat[0][0]*mat[1][1]*mat[2][2]+mat[2][0]*mat[0][1]*mat[1][2]+mat[0][2]*mat[1][0]*mat[2][1])-(mat[0][2]*mat[1][1]*mat[2][0]+mat[2][2]*mat[0][1]*mat[1][0]+mat[0][0]*mat[1][2]*mat[2][1]);
}
int def_2x2(int mat[2][2])
{
return mat[0][0]* mat[1][1]-mat[0][1]*mat[1][0]; // для 2х2
}
void read_file()
{ //чтение матрици
ifstream fin;
fin.open(inpath);
int i,tmp;
for (i=tmp=0; i < 3; ++i)
{
for (int j = 0; j < 3; ++j)
{
fin>>tmp;
arr[i][j]=tmp;
}
}
fin.close();
}
void write_def()
{
ofstream fout;
fout.open(outpath);
int def=def_3x3(arr);
fout<<def;
}