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() 函数接受两个参数 x
和 y
,并返回 x 除以 y 的整数商和余数。
商 quot
是表达式 x/y 的结果。余数 rem
是表达式 x%y 的结果。
参数:
x
:表示分子。y
:表示分母。
返回:
lldiv() 函数返回一个类型为 lldiv_t
的结构,它由两个成员组成:quot
和 rem
。定义如下:
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()用法及代码示例
- C++ llround()用法及代码示例
- C++ llrint()用法及代码示例
- C++ llabs()用法及代码示例
- C++ list assign()用法及代码示例
- C++ log2()用法及代码示例
- C++ list front()用法及代码示例
- C++ list::remove()、list::remove_if()用法及代码示例
- C++ lrint() and llrint()用法及代码示例
- C++ list back()用法及代码示例
- C++ list merge()用法及代码示例
- C++ ldiv()用法及代码示例
- C++ list remove()用法及代码示例
- C++ list push_back()用法及代码示例
- C++ list::begin()、list::end()用法及代码示例
- C++ list::operator=用法及代码示例
- C++ list erase()用法及代码示例
- C++ list::empty()、list::size()用法及代码示例
- C++ list resize()用法及代码示例
- C++ list pop_front()用法及代码示例
注:本文由纯净天空筛选整理自 C++ lldiv()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。