Write a C++ program that will receive two integers from the user and store the numbers in locations called numerator and denominator. Calculate and output the result of the division if the denominator is not equal to zero otherwise output a message stating division by zero is an illegal operation.
Ameer Yousuf
January 31, 2021
0 Comments
CODE: #include<iostream> using namespace std; int main(){ int a,b,c; cout<<"Division of 2 Numbers\n"; cout<&...
Read More