C++中的取余函數(shù)remainder與fmod詳解
1.整數(shù)取余
%
2.remainder函數(shù)
用法:
double remainder (double numer , double denom);
float remainder (float numer , float denom);
long double remainder (long double numer, long double denom);
double remainder (Type1 numer , Type2 denom); // additional overloads
Returns the floating-point remainder of numer/denom (rounded to nearest):
remainder = numer - rquot * denom
Where rquot is the result of: numer/denom, rounded toward the nearest integral value (with halfway cases rounded toward the even number).
A similar function, fmod, returns the same but with the quotient truncated (rounded towards zero) instead.
The function remquo has a behavior identical to this function, but it additionally provides access to the intermediate quotient value used.
Additional overloads are provided in this header () for other combinations of arithmetic types (Type1 and Type2): These overloads effectively cast its arguments to double before calculations, except if at least one of the arguments is of type long double (in which case both are casted to long double instead).
Parameters
numer: Value of the quotient numerator.
denom: Value of the quotient denominator.
Return Value
The remainder of dividing the arguments.
If this remainder is zero, its sign shall be that of numer.
If denom is zero, the function may either return zero or cause a domain error (depending on the library implementation).
If a domain error occurs:
And math_errhandling has MATH_ERRNO set: the global variable errno is set to EDOM.
And math_errhandling has MATH_ERREXCEPT set: FE_INVALID is raised.
示例:
/* remainder example */ #include <stdio.h> /* printf */ #include <math.h> /* remainder */ int main () { printf ( "remainder of 5.3 / 2 is %f\n", remainder (5.3,2) ); printf ( "remainder of 18.5 / 4.2 is %f\n", remainder (18.5,4.2) ); return 0; }
輸出:
remainder of 5.3 / 2 is -0.700000
remainder of 18.5 / 4.2 is 1.700000
3.fmod函數(shù)
https://cplusplus.com/reference/cmath/fmod/?kw=fmod
用法:
double fmod (double numer , double denom); float fmod (float numer , float denom);long double fmod (long double numer, long double denom); double fmod (Type1 numer , Type2 denom); // additional overloads
Compute remainder of division
Returns the floating-point remainder of numer/denom (rounded towards zero):
fmod = numer - tquot * denom
Where tquot is the truncated (i.e., rounded towards zero) result of: numer/denom.
A similar function, remainder, returns the same but with the quotient rounded to the nearest integer (instead of truncated).
Additional overloads are provided in this header () for other combinations of arithmetic types (Type1 and Type2): These overloads effectively cast its arguments to double before calculations, except if at least one of the arguments is of type long double (in which case both are casted to long double instead).
Parameters
numer Value of the quotient numerator. denom Value of the quotient
denominator.
Return Value
The remainder of dividing the arguments.
If denom is zero, the function may either return zero or cause a domain error (depending on the library implementation).
C90 (C++98)C99 (C+11)
If a domain error occurs:
- And math_errhandling has MATH_ERRNO set: the global variable errno is set to EDOM.
- And math_errhandling has MATH_ERREXCEPT set: FE_INVALID is raised.
示例:
/* fmod example */ #include <stdio.h> /* printf */ #include <math.h> /* fmod */ int main () { printf ( "fmod of 5.3 / 2 is %f\n", fmod (5.3,2) ); printf ( "fmod of 18.5 / 4.2 is %f\n", fmod (18.5,4.2) ); return 0; }
輸出:
fmod of 5.3 / 2 is 1.300000
fmod of 18.5 / 4.2 is 1.700000
4.自編remainder及fmod
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <math.h> using namespace std; //VS2010不提供remainder這個(gè)函數(shù),自己實(shí)現(xiàn) //http://www.cplusplus.com/reference/cmath/remainder/ //Returns the floating - point remainder of numer / denom(rounded to nearest) : //remainder = numer - rquot * denom //Where rquot is the result of : numer / denom, rounded toward the nearest integral value(with halfway cases rounded toward the even number). //A similar function, fmod, returns the same but with the quotient truncated(rounded towards zero) instead. #define ROUND(d) int(d + 0.5)//四舍五入 double myremainder(double numer, double denom) { //如果一正一負(fù),這個(gè)函數(shù)結(jié)果可能不對(duì) int rquot = ROUND(numer / denom);//remainder和fmod的區(qū)別就是要不要四舍五入 double remainder = numer - rquot * denom; return remainder; } double myfmod(double x, double y) { return x - (int)(x / y) * y; } int main() { double x, y; x = 14.3; y = 3.0; printf("x = %f, y = %f\n", x, y); printf("remainder(x, y) = %f\n", remainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("myremainder(x, y) = %f\n", myremainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("fmod(x, y) = %f\n", fmod(x, y)); // 計(jì)算余數(shù),向零取整 printf("myfmod(x, y) = %f\n", myfmod(x, y)); // 計(jì)算余數(shù),向零取整 x = -14.3; y = 3.0; printf("x = %f, y = %f\n", x, y); printf("remainder(x, y) = %f\n", remainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("myremainder(x, y) = %f\n", myremainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("fmod(x, y) = %f\n", fmod(x, y)); // 計(jì)算余數(shù),向零取整 printf("myfmod(x, y) = %f\n", myfmod(x, y)); // 計(jì)算余數(shù),向零取整 x = 14.3; y = -3.0; printf("x = %f, y = %f\n", x, y); printf("remainder(x, y) = %f\n", remainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("myremainder(x, y) = %f\n", myremainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("fmod(x, y) = %f\n", fmod(x, y)); // 計(jì)算余數(shù),向零取整 printf("myfmod(x, y) = %f\n", myfmod(x, y)); // 計(jì)算余數(shù),向零取整 x = -14.3; y = -3.0; printf("x = %f, y = %f\n", x, y); printf("remainder(x, y) = %f\n", remainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("myremainder(x, y) = %f\n", myremainder(x, y)); // 計(jì)算余數(shù),四舍五入到最接近的整數(shù) printf("fmod(x, y) = %f\n", fmod(x, y)); // 計(jì)算余數(shù),向零取整 printf("myfmod(x, y) = %f\n", myfmod(x, y)); // 計(jì)算余數(shù),向零取整 system("pause"); }
輸出結(jié)果
到此這篇關(guān)于C++中的取余函數(shù)remainder與fmod詳解的文章就介紹到這了,更多相關(guān)C++取余內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
C語言實(shí)現(xiàn)簡(jiǎn)易通訊錄(靜態(tài)版本)的代碼分享
這篇文章主要為大家詳細(xì)介紹了如何錄音C語言實(shí)現(xiàn)一個(gè)簡(jiǎn)易的通訊錄(靜態(tài)版本),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-10-10C語言?超詳細(xì)講解算法的時(shí)間復(fù)雜度和空間復(fù)雜度
算法復(fù)雜度分為時(shí)間復(fù)雜度和空間復(fù)雜度。其作用:?時(shí)間復(fù)雜度是度量算法執(zhí)行的時(shí)間長(zhǎng)短;而空間復(fù)雜度是度量算法所需存儲(chǔ)空間的大小2022-03-03C++實(shí)現(xiàn)圖形界面時(shí)鐘表盤代碼
這篇文章主要介紹了C++實(shí)現(xiàn)圖形界面時(shí)鐘表盤代碼,涉及坐標(biāo)函數(shù)的應(yīng)用及圖形界面程序設(shè)計(jì),需要的朋友可以參考下2014-10-10C++ TensorflowLite模型驗(yàn)證的過程詳解
這篇文章給大家介紹了C++ TensorflowLite模型驗(yàn)證的過程,測(cè)試代碼,主要是RunInference()和read_file(),詳細(xì)操作過程跟隨小編一起看看吧2021-08-08QT使用udp實(shí)現(xiàn)發(fā)送與接收?qǐng)D片
這篇文章主要為大家詳細(xì)介紹了QT如何使用udp協(xié)議實(shí)現(xiàn)發(fā)送與接收?qǐng)D片功能,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2023-12-12