C语言初学 数学中带根号的复杂计算问题

#include<stdio.h>

#include<math.h>

int main()

{

double a,b;

scanf("%lf%lf",&a,&b);

printf("%.5lf ",a*sqrt(b));

return 0;

}

原文地址:https://www.cnblogs.com/lj-1568/p/4367612.html