C 库函数 - fmod()
C 语言教程
· 2019-02-23 10:56:47
描述
C 库函数 double fmod(double x, double y) 返回 x 除以 y 的余数。
声明
下面是 fmod() 函数的声明。
double fmod(double x, double y)
参数
- x -- 代表分子的浮点值。
- y -- 代表分母的浮点值。
返回值
该函数返回 x/y 的余数。
实例
下面的实例演示了 fmod() 函数的用法。
#include <stdio.h> #include <math.h> int main () { float a, b; int c; a = 9.2; b = 3.7; c = 2; printf("%f / %d 的余数是 %lf\n", a, c, fmod(a,c)); printf("%f / %f 的余数是 %lf\n", a, b, fmod(a,b)); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
9.200000 / 2 的余数是 1.200000 9.200000 / 3.700000 的余数是 1.800000
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
High Performance JavaScript
Nicholas C. Zakas / O'Reilly Media / 2010-4-2 / USD 34.99
If you're like most developers, you rely heavily on JavaScript to build interactive and quick-responding web applications. The problem is that all of those lines of JavaScript code can slow down your ......一起来看看 《High Performance JavaScript》 这本书的介绍吧!