Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Manume/44af9059697f6aaa7266 to your computer and use it in GitHub Desktop.
Save Manume/44af9059697f6aaa7266 to your computer and use it in GitHub Desktop.
Program to enter two integers and print the quotient and remainder
#include <iostream.h>
#include <conio.h>
int main()
{
clrscr();
int x,y,quotient,remainder;
cout << "Enter 2 integers greater than 0 : ";
cin>>x>>y;
quotient=x/y;
remainder=x-(quotient*y);
cout << "Quotient of " << x << " & " << y << " = " << quotient << "\n";
cout << "Remainder" << " = " << remainder << "\n";
getch();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment