Compare commits
3 Commits
9a788e79be
...
77913b13ad
Author | SHA1 | Date | |
---|---|---|---|
77913b13ad | |||
d5558bebca | |||
90fede143f |
@ -1,21 +1,11 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
void main1()
|
void main()
|
||||||
{
|
{
|
||||||
SetConsoleCP(1251);
|
SetConsoleCP(1251);
|
||||||
SetConsoleOutputCP(1251);
|
SetConsoleOutputCP(1251);
|
||||||
|
|
||||||
float a, b, c, R, S;
|
printf("Тимкин Денис");
|
||||||
|
printf("ПИбд-14");
|
||||||
printf("Введите стороны треугольника и радиус описанной окружности\n");
|
|
||||||
scanf_s("%f", &a);
|
|
||||||
scanf_s("%f", &b);
|
|
||||||
scanf_s("%f", &c);
|
|
||||||
scanf_s("%f", &R);
|
|
||||||
|
|
||||||
S = (a * b * c) / (4 * R);
|
|
||||||
|
|
||||||
printf("Площадь треугольника=%f\n", S);
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user