If someone could help me out i would be really thankful.
Code:
#include <iostream.h>
void main ()
{

int quarter, dime, nickel, penny, change;
int remainderq, remainderd, remaindern;
cout <<"This is a program that calculates the number of quarters, dimes, nickels,\nand pennies necessary to generate the number of cents entered as input.\n"; 
cout <<"Enter the amount of change to be calculated->";
cin >> change;

quarter = change / 25;

q = change % 25;

dime = q / 10;

d = dime % 5;

nickel = d / 5;

cout <<;
}
I'm confused.