C 库函数 - ldiv()
C 语言教程
· 2019-02-24 10:43:20
描述
C 库函数 div_t div(long int numer, long int denom) 把 numer(分子)除以 denom(分母)。
声明
下面是 ldiv() 函数的声明。
div_t div(long int numer, long int denom)
参数
- numer -- 分子。
- denom -- 分母。
返回值
该函数返回定义在 <cstdlib> 中的结构中的值,该结构有两个成员,如 ldiv_t:long quot; long rem;。
实例
下面的实例演示了 ldiv() 函数的用法。
#include <stdio.h> #include <stdlib.h> int main () { ldiv_t output; output = ldiv(100000L, 30000L); printf("商 = %ld\n", output.quot); printf("余数 = %ld\n", output.rem); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
商 = 3 余数 = 10000
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Ajax for Web Application Developers
Kris Hadlock / Sams / 2006-10-30 / GBP 32.99
Book Description Reusable components and patterns for Ajax-driven applications Ajax is one of the latest and greatest ways to improve users’ online experience and create new and innovative web f......一起来看看 《Ajax for Web Application Developers》 这本书的介绍吧!