In this program,it will take two integers (divisor and dividend) and find the quotient and remainder.
To compute quotient and remainder, both divisor and dividend should be integers.
#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: 17 Enter divisor: 4 Quotient = 4 Remainder = 1