-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab1.cpp
64 lines (59 loc) · 1.74 KB
/
lab1.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 <iostream>
#include <cmath>
#include <assert.h>
#include <Windows.h>
#define groupno 3
using namespace std;
//epsilon for float comparison
#define EPS 0.001
/*
Лабораторна робота 1
виконав Вітязь Денис
Варіант 3
*/
//структура вектор для зберігання даних
struct vec2{
double x;
double y;
};
double task1(float x){
return 5.6 * fabs(x) + ( x/1.8 + tan(3*x)) / (1.5*(x+2));
}
vec2 task2(){
vec2 a = {0, 0};
vec2 b = {groupno, groupno-1};
vec2 c = {-groupno, groupno+1};
double aa = sqrt(pow(b.x-a.x, 2) + pow(b.y-a.y, 2));
double bb = sqrt(pow(c.x-b.x, 2) + pow(c.y-b.y, 2));
double cc = sqrt(pow(c.x-a.x, 2) + pow(c.y-a.y, 2));
double p=(aa+bb+cc)/2;
double bisector = 2*sqrt(aa*cc*p*(p-bb))/(aa+cc);
double radius = sqrt((p-aa)*(p-bb)*(p-cc)/p);
//return 2 values at once using vector!
return {bisector, radius};
}
bool test(){
//test task1
assert(fabs(task1(0) - 0) < EPS);
assert(fabs(task1(1) - 5.692) < EPS);
//task2
vec2 res = task2();
assert(fabs(res.x - 2.879) < EPS);//bisector
assert(fabs(res.y - 1.205) < EPS);//radius
std::cout<<"Тести пройдено успішно!"<<std::endl;
return true;
}
int main(){
//set console encoding to utf-8
SetConsoleOutputCP(CP_UTF8);
float x;
std::cout<<"Введіть значення x: ";
std::cin>>x;
double y = task1(x);
std::cout<<"Результат: "<<y<<std::endl;
vec2 res = task2();
std::cout<<"Довжина бісектриси: "<<res.x<<std::endl;
std::cout<<"Радіус кола, що вписаний в трикутник: "<<res.y<<std::endl;
test();
return 0;
}