C ++中的modf()函數(shù)將數(shù)字分為整數(shù)和小數(shù)部分。
如前所述,modf(x,intptr)將數(shù)字分解為整數(shù)和小數(shù)部分。將浮點(diǎn)值 x 分解成小數(shù)和整數(shù)部分,每個(gè)都與 x 具有同樣的符號(hào)。返回 x的帶符號(hào)的小數(shù)部分,整數(shù)部分作為浮點(diǎn)值存儲(chǔ)在 intptr 處。
此函數(shù)在<cmath>頭文件中定義。
double modf (double x, double* intpart); float modf (float x, float* intpart); long double modf (long double x, long double* intpart); double modf (T x, double* intpart); //T是整數(shù)類型
modf()具有兩個(gè)參數(shù):
x - 值被分成兩部分。
intpart - 指向?qū)ο螅愋团cx相同)的對(duì)象,該部分以與x相同的符號(hào)存儲(chǔ)整數(shù)部分。
modf()函數(shù)返回傳遞給它的參數(shù)的小數(shù)部分。
#include <iostream> #include <cmath> using namespace std; int main () { double x = 14.86, intPart, fractPart; fractPart = modf(x, &intPart); cout << x << " = " << intPart << " + " << fractPart << endl; x = -31.201; fractPart = modf(x, &intPart); cout << x << " = " << intPart << " + " << fractPart << endl; return 0; }
運(yùn)行該程序時(shí),輸出為:
14.86 = 14 + 0.86 -31.201 = -31 + -0.201
#include <iostream> #include <cmath> using namespace std; int main () { int x = 5; double intpart, fractpart; fractpart = modf(x, &intpart); cout << x << " = " << intpart << " + " << fractpart << endl; return 0; }
運(yùn)行該程序時(shí),輸出為:
5 = 5 + 0