Найти среднее геометрическое двух чисел. На языке С(Си)
с++ подойдёт?
желательно именно си
#include
int main()
{
float a, b;
printf("Input 1st number: ");
scanf("%f", &a);
printf("Input 2nd number: ");
scanf("%f", &b);
printf("Result = %f", sqrt(a * b));
return 0;
}