当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ lldiv()用法及代码示例


C++ 中的lldiv() 函数计算两个数相除的积分商和余数。

lldiv() 函数可以被认为是 div()long long int 版本。

它在<cstdlib> 头文件中定义。

数学上,

quot * y + rem = x

lldiv() 原型 [从 C++ 11 标准开始]

lldiv_t lldiv(long long int x, long long int y);
lldiv_t lldiv(long long x, long long y);

lldiv() 函数接受两个参数 xy ,并返回 x 除以 y 的整数商和余数。

quot 是表达式 x/y 的结果。余数 rem 是表达式 x%y 的结果。

参数:

  • x :表示分子。
  • y :表示分母。

返回:

lldiv() 函数返回一个类型为 lldiv_t 的结构,它由两个成员组成:quotrem。定义如下:

struct lldiv_t {
	long long quot;
	long long rem;
};

示例:lldiv() 函数如何在 C++ 中工作?

#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
	long long nume = 998102910012LL;
	long long deno = 415LL;
	
	lldiv_t result = lldiv(nume, deno);
	
	cout << "Quotient of " << nume << "/" << deno << " = " << result.quot << endl;
	cout << "Remainder of " << nume << "/" << deno << " = " << result.rem << endl;
	
	return 0;
}

运行程序时,输出将是:

Quotient of 998102910012/415 = 2405067253
Remainder of 998102910012/415 = 17

相关用法


注:本文由纯净天空筛选整理自 C++ lldiv()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。