C++ Program to Find Quotient and Remainder
In this example, we will learn to find the quotient and remainder of a given dividend and divisor using C++ cout statement.
Program to Add Two Numbers
In this program, the user is asked to enter two integers (divisor and dividend) and the quotient and the remainder of their division is computed.
To Find quotient and remainder, both divisor and dividend should be integers.
Example: Program to Find 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: 19 Enter divisor: 3 Quotient = 6 Remainder = 1
Working of above Program
In this program, user is asked to enter two integers. These two integers are stored in variables dividend and divisor respectively.
The division operator /
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).
Next Example
We hope that this Example helped you develop better understanding of the concept of Program to Find Quotient and Remainder in C++.
Keep Learning : )
In the next Example, we will learn about C++ Find the Size of int, float, double and char.
.