The remainder function and % operator.
以下这段代码过不了编译的(gcc)
#include#include int main(){ double x = 10; printf("x % 2 = %lf\n",x%2.0); return 0;}
operator % 仅能操作在整形数据中,(推測,%的实现是依据数据位shift实现的).
这里浮点数的取余数调用<math.h> 里面的fmod(doube x,double y)就可以
本文共 274 字,大约阅读时间需要 1 分钟。
The remainder function and % operator.
以下这段代码过不了编译的(gcc)
#include#include int main(){ double x = 10; printf("x % 2 = %lf\n",x%2.0); return 0;}
operator % 仅能操作在整形数据中,(推測,%的实现是依据数据位shift实现的).
这里浮点数的取余数调用<math.h> 里面的fmod(doube x,double y)就可以
转载地址:http://lvhgx.baihongyu.com/