This commit is contained in:
Denis_5438 2024-11-15 16:18:37 +04:00
parent c48bbff085
commit 9a788e79be

View File

@ -1 +1,21 @@
 #include <stdio.h>
#include <Windows.h>
#include <math.h>
void main1()
{
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
float a, b, c, R, S;
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);
}