lab52/lab5/ConsoleApplication1/ConsoleApplication1.cpp

23 lines
637 B
C++
Raw Normal View History

2024-11-27 11:41:33 +04:00
#include <stdio.h>
#include <Windows.h>
#include <math.h>
2024-11-13 12:43:26 +04:00
2024-11-27 11:41:33 +04:00
void main()
2024-11-13 12:43:26 +04:00
{
2024-11-27 11:41:33 +04:00
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
float height, width, length;
float diagonal;
2024-11-13 12:43:26 +04:00
2024-11-27 11:41:33 +04:00
printf("Программа для вычисления диагонали параллелепипеда\n");
printf("Введите высоту:");
scanf_s("%f", &height);
printf("Введите ширину:");
scanf_s("%f", &width);
printf("Введите длину:");
scanf_s("%f", &length);
2024-11-13 12:43:26 +04:00
2024-11-27 11:41:33 +04:00
diagonal = sqrt(powf(height, 2) + powf(width, 2) + powf(length, 2));
printf("Диагональ параллелепипеда равна:%f", diagonal);
}