4.C++ Program to Find Quotient and Remainder
- Get link
- Other Apps
C++ Program to Find Quotient and Remainder
In this example, you will learn to find the quotient and remainder of a given dividend and divisor.
In this program, user is asked to enter two integers (divisor and dividend) and computes the quotient and remainder.
To compute quotient and remainder, both divisor and dividend should be integers.
Example: Compute quotient and remainder
#include <iostream>
using namespace std;
int main()
{
int divisor, dividend, quotient, remainder;
cout << "Enter dividend: ";
cin >> dividend;
cout << "Enter divisor: ";
cin >> divisor;
quotient = dividend / divisor;
remainder = dividend % divisor;
cout << "Quotient = " << quotient << endl;
cout << "Remainder = " << remainder;
return 0;
}
Output
Enter dividend: 13 Enter divisor: 4 Quotient = 3 Remainder = 1
The division operator / is computes the quotient (either between float or integer variables).
The modulus operator % computes the remainder when one integer is divided by another (modulus operator cannot be used for floating-type variables).
Check out these related examples:
- C++ Program to Convert Binary Number to Decimal and vice-versa
- C++ Program to Reverse a Number
- C++ Program to Check Whether Number is Even or Odd
- Get link
- Other Apps
C++ PROGRAM TO FIND QUOTIENT AND REMAINDER
ReplyDelete