C++ 基礎(chǔ)教程

C++ 流程控制

C++ 函數(shù)

C++ 數(shù)組 & 字符串

C++ 數(shù)據(jù)結(jié)構(gòu)

C++ 類 & 對象

C++ 指針

C++ 繼承

C++ STL 教程

C++ 參考手冊

C++ frexp() 函數(shù)使用方法及示例

C++ 庫函數(shù) <cmath>

C ++中的frexp(x,exp)函數(shù)返回一個(gè)浮點(diǎn)數(shù)的尾數(shù)和指數(shù)。

二進(jìn)制有效位數(shù)是一個(gè)浮點(diǎn),其絕對值(尾數(shù))在區(qū)間[0.5,1]中,整數(shù)指數(shù)為2。

該函數(shù)在<cmath>頭文件中定義。

數(shù)學(xué)上

x = Binary significand * 2exponent

其中,指數(shù)存儲在exp所指向的位置,而二進(jìn)制有效位數(shù)是frexp()返回的值。

frexp()原型[從C ++ 11標(biāo)準(zhǔn)開始]

double frexp (double x, int* exp);
float frexp (float x, int* exp);
long double frexp (long double x, int* exp);
double frexp (T x, int* exp); //為整型

frexp()函數(shù)函數(shù)有兩個(gè)參數(shù),并返回double,float或long double類型的二進(jìn)制有效值。

frexp()參數(shù)

  • x -要分解的值。

  • exp -指向要存儲指數(shù)值的整數(shù)的指針。

frexp()返回值

frexp()函數(shù)返回尾數(shù),其絕對值位于范圍[0.5,1]中。如果x為零,則有效數(shù)和指數(shù)均為零。

frexp()返回值
參數(shù)(x)二進(jìn)制有效位指數(shù)
000
x> = 1
x <= -1負(fù)
-1 <x <0負(fù)負(fù)
0 <x <1負(fù)

示例1:frexp()函數(shù)在C ++中如何工作?

#include <iostream>
#include <cmath>

using namespace std;

int main ()
{
	double x = 6.81, significand;
	int *exp;
	significand = frexp(x , exp);
	cout << x << " = " << significand << " * 2^" << *exp << endl;

	return 0;
}

運(yùn)行該程序時(shí),輸出為:

6.81 = 0.85125 * 2^3

示例2:帶有整數(shù)類型的frexp()函數(shù)

#include <iostream>
#include <cmath>

using namespace std;

int main ()
{
	double significand;
	int *exp, x = 25;
	significand = frexp (x , exp);
	cout << x << " = " << significand << " * 2^" << *exp << endl;
	return 0;
}

運(yùn)行該程序時(shí),輸出為:

25 = 0.78125 * 2^5

  C++ 庫函數(shù) <cmath>

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清