📜  C++中的isunordered()函数

📅  最后修改于: 2021-05-30 03:38:30             🧑  作者: Mango

isunordered()函数在定义,并检查是否可以将第一个参数的值与第二个参数进行有意义的比较。如果第一个参数不能与第二个参数进行有意义的比较(即一个或两个都是NAN),则返回1,否则返回0。

句法:

bool isunordered(float x, float y);

或者

bool isunordered(double x, double y);

参数:它采用两个值x和y,即用于检查它们是否无序的值。

返回:它返回1,如果x的或值y是NAN,否则返回0。

下面的程序说明了C++中的isunordered()函数:

范例1:-

// c++ program to demonstrate
// example of isunordered() function.
  
#include 
using namespace std;
  
int main()
{
  float x=6.3;
  float y=sqrt(-9);
  
  cout<<"The value of x is= "<< x << endl;
  cout<<"The value of y is= "<< y << endl;
  
  //Now it return whether x or y are unordered values or not
  cout<<"isunordered(x, y) = "<
输出:
The value of x is= 6.3
The value of y is= -nan
isunordered(x, y) = 1

说明:在示例1中,y的值为NAN,这就是函数返回1的原因。

示例2:

// c++ program to demonstrate
// example of isunordered() function.
  
#include 
using namespace std;
  
int main()
{
  float x=4.6;
  float y=9.2;
  
  cout<<"The value of x is= "<< x << endl;
  cout<<"The value of y is= "<< y << endl;
  
  //Now it return whether x or y are unordered values or not
  cout<<"isunordered(x, y) = "<
输出:
The value of x is= 4.6
The value of y is= 9.2
isunordered(x, y) = 0

说明:在示例2中,x和y的值不是NAN,这就是函数返回0的原因。

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”