Объяснение:
#include <stdio.h>
#include <math.h>
int main()
{
float a, b, c, P;
printf("Введите a: ");
scanf("%f", &a);
printf("Введите b: ");
scanf("%f", &b);
c = sqrt(pow(a,2)+pow(b,2));
P = a + b + c;
printf("Гипотенуза: %f\n", c);
printf("Периметр: %f\n", P);
return 0;
}
Объяснение:
#include <stdio.h>
#include <math.h>
int main()
{
float a, b, c, P;
printf("Введите a: ");
scanf("%f", &a);
printf("Введите b: ");
scanf("%f", &b);
c = sqrt(pow(a,2)+pow(b,2));
P = a + b + c;
printf("Гипотенуза: %f\n", c);
printf("Периметр: %f\n", P);
return 0;
}