詳解C++中的isunordered函數
所述isunordered()函數定義在<cmath.h>並檢查是否第一個參數的值可以有意義與第二個參數進行比較。如果第一個參數不能與第二個參數進行有意義的比較(即一個或兩個都是NAN),則返回1,否則返回0。
句法:
bool isunordered(float x,float y);
或者
bool是無序的(double x,double y);
參數:它使用兩個值x和y,即用於檢查它們是否無序的值。
返回:它返回1,如果x或y值是NAN,否則返回0。
下面的程序說明瞭C ++中的isunordered()函數:
示例一:
#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; cout<<"isunordered(x, y) = "<<isunordered(x, y); return 0; }
輸出:
x的值是6.3
y的值是= -nan
isunordered(x,y)= 1
說明:在示例1中,y的值為NAN,這就是函數返回1的原因。
示例2:
#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; cout<<"isunordered(x, y) = "<<isunordered(x, y); return 0; }
輸出:
x的值是4.6
y的值是9.2
isunordered(x,y)= 0
說明:在示例2中,x和y的值不是NAN,這就是函數返回0的原因。
到此這篇關於詳解C++中的isunordered函數的文章就介紹到這瞭,更多相關C++ isunordered函數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!