当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ sqrt()用法及代码示例


C++ sqrt() 函数

sqrt() 函数是 cmath 头文件(早期版本为<math.h>)的库函数,用于求给定数字的平方根,它接受一个数字并返回平方根。

注意:如果我们提供负值,sqrt() 函数将返回域错误。 (-nan)。

sqrt() 函数的语法:

    sqrt(x);

参数: x– 要计算其平方根的数字。

返回值: double– 它返回双精度值,即给定数字的平方根x

例:

    Input:
    int x = 2;

    Function call:
    sqrt(x);

    Output:
    1.41421

C++代码演示sqrt()函数的例子

// C++ code to demonstrate the example of 
// sqrt() function

#include <iostream>
#include <cmath>
using namespace std;

// main code section
int main()
{
    float x;
    
    //input the value
    cout<<"Enter a number:";
    cin>>x;

    // calculate the square root
    float result = sqrt(x);
    cout<<"square root of "<<x<<" is = "<<result;
    cout<<endl;
    
    return 0;
}

输出

First run:
Enter a number:4
square root of 4 is = 2 

Second run:
Enter a number:10.234 
square root of 10.234 is = 3.19906

Third run:
Enter a number:0
square root of 0 is = 0

Fourth run:
Enter a number:-10
square root of -10 is = -nan 


相关用法


注:本文由纯净天空筛选整理自 sqrt() function with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。