c语言中sqrt函数_sqrt()函数以及C ++中的示例

c语言中sqrt函数

C ++ sqrt()函数 (C++ sqrt() function)

sqrt() function is a library function of cmath header (<math.h> in earlier versions), it is used to find the square root of a given number, it accepts a number and returns the square root.

sqrt()函数cmath标头(在早期版本中为<math.h> )的库函数,用于查找给定数字的平方根,它接受数字并返回平方根。

Note: If we provide a negative value, sqrt() function returns a domain error. (-nan).

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

Syntax of sqrt() function:

sqrt()函数的语法:

    sqrt(x);

Parameter(s): x – a number whose square root to be calculated.

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

Return value: double – it returns double value that is the square root of the given number x.

返回值: double-返回double值,它是给定数字x的平方根。

Example:

例:

    Input:
    int x = 2;

    Function call:
    sqrt(x);

    Output:
    1.41421

C ++代码演示sqrt()函数的示例 (C++ code to demonstrate the example of sqrt() function)

// 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;
}

Output

输出量

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 


翻译自: https://www.includehelp.com/cpp-tutorial/sqrt-function-with-example.aspx

c语言中sqrt函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值