-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab3_4.cpp
71 lines (61 loc) · 1.29 KB
/
Lab3_4.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
// Lab3_4.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <stdio.h>
#include <cmath>
#include <math.h>
#include <iostream>
#include <limits>
using namespace std;
int get_elem();
int main()
{
setlocale(LC_ALL, "Russian");
int array[2][2];
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 2; j++) {
array[i][j] = get_elem();
}
}
for (int x = 0; x < 2; x++)
{
for (int y = 0; y < 2; y++)
{
printf("%d \t", array[x][y]);
}
printf("\n");
}
int a = 1;
int b = -array[0][0] - array[1][1];
int c = array[0][0]*array[0][1] - array[0][1] * array[1][0];
if ((b * b - 4 * a * c) >= 0)
{
int x1 = (-1*b + sqrt(b*b - 4*a*c)) / (2*a);
printf("x1 = %d\n", x1);
int x2 = (-1*b - sqrt(b*b - 4*a*c)) / (2*a);
printf("x2 = %d\n", x2);
}
else
{
printf("Нет корней");
}
return 0;
}
int get_elem()
{
int elem;
while (true)
{
cout << "Enter the element of array: ";
cin >> elem;
if (cin.fail())
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(),'\n');
cout <<"It's not correct, please write again" << endl;
}
else
{
return elem;
}
}
}