Computer >> Máy Tính >  >> Lập trình >> C ++

hàm div () trong C ++

Thư viện C / C ++ hàm div_t div (int numer, int denom) chia numer (tử số) cho denom (mẫu số). Sau đây là khai báo cho hàm div ().

div_t div(int numer, int denom)

Các tham số là tử số và mẫu số. Hàm này trả về giá trị trong một cấu trúc được định nghĩa trong , có hai thành viên. Đối với div_t:int quot; intrem;

Ví dụ

#include <iostream>
#include <cstdlib>
using namespace std;
int main () {
   div_t output;
   output = div(27, 4);
   cout << "Quotient part of (27/ 4) = " << output.quot << endl;
   cout << "Remainder part of (27/4) = " << output.rem << endl;
   output = div(27, 3);
   cout << "Quotient part of (27/ 3) = " << output.quot << endl;
   cout << "Remainder part of (27/3) = " << output.rem << endl;
   return(0);
}

Đầu ra

Quotient part of (27/ 4) = 6
Remainder part of (27/4) = 3
Quotient part of (27/ 3) = 9
Remainder part of (27/3) = 0