发布时间:2023-12-13 05:24来源:www.sf1369.com作者:宇宇
加头文件#include<math.h>
然后在语句中用函数 sqrt()
比如3开根号,就是 sqrt(3)
楼上的就是答案,由于需要开根号,使用函数sqrt,因此需要导入math头文件,一般都是调用存在的函数,自己编写比较麻烦。
就是sqrt之前#includecmath
首先在 main()函数 上边加个#include math.h 因为开根号属于 数学函数里边的函数,要使用根号就要加上#inculde math.h,
然后在你要开根号的数的前边加个 sqrt,就可以了
例如
#inculde math.h
main()
{ float a,b;
printf(please input a nuberm:);
scanf(%f,&a);
b=sqrt(a);
printf(%f\n,b);
}这个程序就是 让 用户输入个数字,然后输出原数值的开根号后的结果