发布网友 发布时间:2022-04-23 03:57
共3个回答
热心网友 时间:2022-07-10 12:46
#include <stdio.h>
#include <math.h>
int main( )
{
double x, root;
scanf("%lf", &x);
/*---------*/
root=sqrt(x);
printf("The square root of %0.1f is %0.1f\n", x, root);
return 0;
}
热心网友 时间:2022-07-10 12:46
root=sqrt(x);
热心网友 时间:2022-07-10 12:47
root=sqr(x);