C语言编程 求平方根

发布网友 发布时间: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);

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com