DIVc語言中的div函式,是將兩個整數相除,返回商。
基本介紹
- 中文名:除法
- 外文名:DIVision
- 外語縮寫:div
- 功 能:將兩個整數相除,返回商和餘數
函式名
功 能
用 法
程式例
# include<stdio.h>/* #包含<stdio.h> */#include <stdlib.h>/* #包含<stdlib.h> */div_t x;int main(void) /* “整數”類型 “主”函式 (無類型) */{ x = div(10,3); /* 賦值 */ printf("10 div 3 = %d remainder %d\n", x.quot, x.rem); /* 格式輸出("10 div 3 = %d remainder %d\n", x.quot, x.rem); */ return 0;/* 返回 零; (正常退出) */}