Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++ STL의 lldiv() 함수

<시간/>

C++ STL의 lldiv() 함수는 두 숫자를 나눈 몫과 나머지의 결과를 제공합니다.

알고리즘

Begin
   Take two long type numbers as input.
   Call function lldiv().
   Print the quotient and remainder.
End.

예시 코드

#include <cstdlib>
#include <iostream>
using namespace std;
int main() {
   long long q = 500LL;
   long long r = 25LL;
   lldiv_t res = lldiv(q, r);
   cout << "Quotient of " << q << "/" << r << " = " << res.quot << endl;
   cout << "Remainder of " << r << "/" << r << " = " << res.rem << endl;
   return 0;
}

출력

Quotient of 500/25 = 20
Remainder of 25/25 = 0