當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ isunordered()用法及代碼示例


在中定義isunordered()函數,並檢查是否可以有意義地將第一個參數的值與第二個參數進行比較。如果第一個參數不能與第二個參數進行有意義的比較(即一個或兩個都是NAN),則返回1,否則返回0。

用法:

bool isunordered(float x, float y);

或者


bool isunordered(double x, double y);

參數:它需要兩個值x和y即兩個值來檢查它們是否無序。

返回:如果x或y的值為NAN,則返回1;否則,返回0。

以下示例程序旨在說明C++中的isunordered()函數:

示例1:

// c++ program to demonstrate 
// example of isunordered() function. 
  
#include <bits/stdc++.h> 
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) = "<<isunordered(x, y); 
  return 0; 
}
輸出:
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 <bits/stdc++.h> 
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) = "<<isunordered(x, y); 
  return 0; 
}
輸出:
The value of x is= 4.6
The value of y is= 9.2
isunordered(x, y) = 0

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



相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 isunordered() function in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。