Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compute quotient and remainder

C++ Basic: Exercise-29 with Solution

Write a program in C++ to compute quotient and remainder.

Pictorial Presentation:

C++ Exercises: Compute quotient and remainder

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

    int main()
    {
    	int dividend, divisor, quotient,remainder;
		cout << "\n\n Compute quotient and remainder :\n";
		cout << "-------------------------------------\n";		
        cout<<" Input the dividend : ";
    	cin>>dividend;
        cout<<" Input the divisor : ";
    	cin>>divisor;
		quotient=dividend / divisor;
		remainder=dividend % divisor;
        cout<<" The quotient of the division is : "<< quotient << endl;
        cout<<" The remainder of the division is : "<< remainder << endl;
        cout << endl;
        return 0;
    }

Sample Output:

 Compute quotient and remainder :                                      
-------------------------------------                                  
 Input the dividend : 25                                               
 Input the divisor : 3                                                 
 The quotient of the division is : 8                                   
 The remainder of the division is : 1 

Flowchart:

Flowchart: Compute quotient and remainder

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the area of Scalene Triangle.
Next: Write a program in C++ to compute the total and average of four numbers.

What is the difficulty level of this exercise?