C++ Programming

From Wikibooks, open books for an open world
Jump to navigation Jump to search
#include<iostream>

using namespace std;
int main()
{
    int a = 33, b = 5;
    cout << "Quotient = " << a / b << endl;
    cout << "Remainder = "<< a % b << endl;
    return 0;
}