c语言平方根函数
发布时间: 2024-12-01 01:17:40
㈠ c语言程序里怎么开平方
两种常用的方法。
都需要include <math.h>
1 用sqrt
double sqrt(double n);\
求参数n的平方根
2 用pow
double pow(double n, double e);
计算n的e次幂
这样
pow(n,0.5);
就是平方根了
明显 第一种更实用。
㈡ C语言中开平方函数是什么
1、C语言中求平方根的函数是sqrt
2、实例:
函数原型: double sqrt(double x);和 float sqrt(float x);
头文件:#include <math.h>
参数说明:x 为要计算平方根的值
返回值:返回 x 平方根
注意事项:如果 x < 0,将会导致 domain error 错误。
示例计算200 的平方根值:
#include <math.h>
#include <stdio.h>
int main(){
double root;
root = sqrt(200);
printf("answer is %f\n", root);
return 0;
}
//输出:answer is 14.142136
热点内容