remainder()函数还有以下三种很少被使用的参数类型:
double remainder( double x, double y )。
float remainderf( float x, float y )。
long double remainderl (long double x,long double y)。
返回的都是 x/y 的余数 , r = x – ny , n 是接近x/y 实际值的整数。