double x = 10 ,y = 0;y = x % 2; 这个表达式正确吗?
程序员文章站
2022-06-12 17:35:38
...
The remainder function and % operator. 下面这段代码过不了编译的(gcc) #include stdio.h#include fenv.hint main(){double x = 10;printf(x % 2 = %lf\n,x%2.0);return 0;} operator % 仅能操作在整形数据中,(猜测,%的实现是根据数据位shift实现的). 这
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实现的).
这里浮点数的取余数调用