C++ Math acos()函数

C++ Math acos()函数

此函数计算给定数字的反余弦值(以弧度表示)。

acos(x) = cos -1x

语法

假设一个数为x。语法如下:

float acos(float x);
double acos(double x);
long double acos(long double x);
double acos(integral x);

注意:如果传递的值是整数类型,则会转换为双精度。

参数

x :要计算其反余弦的值。它应该在[-1,1]的范围内。

返回值

Parameter Return value
-1≤x≤1 (0,∏)
x<-1 or x>1 Not a number

示例1

让我们来看一个简单的示例,当x的值大于1时。

#include 
#include
using namespace std;
int main()
{
    float degree=90;
    float x=degree*3.14/180;
std::cout << "Value of cosine is :" <

输出:

Value of cosine is :0.000796274
Inverse of cosine is :nan   

在这个示例中,acos()函数在x的值大于1时计算一个数的反余弦。

示例2

让我们来看一个简单的示例,当x的值等于零时。

#include 
#include
using namespace std;
int main()
{
    float degree=0;
    float x=degree*3.14/180;
std::cout << "Value of cosine is :" <

输出:

Value of cosine is :1
Inverse of cosine is :1.5708   

在这个示例中,acos()函数在x的值等于零时计算一个数的反余弦。

示例3

让我们看一个简单的示例,当x的值小于-1时。

#include 
#include
using namespace std;
int main()
{
    float degree= -60;
    float x=degree*3.14/180;
std::cout << "Value of cosine is :" <

输出:

Value of cosine is :0.50046
Inverse of cosine is :nan   

在这个示例中,acos()函数在x的值小于-1时计算一个数的反余弦。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程