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: Divide two numbers and print on the screen

C++ Basic: Exercise-33 with Solution

Write a program in C++ to divide two numbers and print on the screen.

Pictorial Presentation:

C++ Exercises: Divide two numbers and print on the screen

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
 
int main()
{
    cout << "\n\n Divide two numbers and print:\n";
	cout << "----------------------------------\n";
	int a;
	int b;
	int resdiv;
	a=30;
	b=10;
	resdiv=a/b;
	cout << " The quotient of "<< a << " and "<<b <<" is : "<< resdiv <<"\n\n" ;
}

Sample Output:

Divide two numbers and print:                                         
----------------------------------                                     
 The quotient of 30 and 10 is : 3    

Flowchart:

Flowchart: Divide two numbers and print on the screen

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to check whether a number is positive, negative or zero.
Next: Write a C++ program to display the current date and time.

What is the difficulty level of this exercise?