namespace std {
struct lldiv_t {
long long quot;
long long rem;
};
}
概要
std::div()
関数のlong long
版の戻り値。
quot
は「quotient (商)」、rem
は「remainder (剰余)」。
例
#include <iostream>
#include <cstdlib>
int main()
{
std::lldiv_t x = std::div(5LL, 2LL);
std::cout << x.quot << std::endl;
std::cout << x.rem << std::endl;
}
xxxxxxxxxx
#include <iostream>
#include <cstdlib>
int main()
{
std::lldiv_t x = std::div(5LL, 2LL);
std::cout << x.quot << std::endl;
std::cout << x.rem << std::endl;
}
出力
2
1