Saturday, November 9, 2019

C++ Program to Find Quotient and Remainder

Example Find quotient and remainder in c++
C++ 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: 13
Enter divisor: 4
Quotient = 3
Remainder = 1

1 comment:

  1. This comment has been removed by a blog administrator.

    ReplyDelete