std::cin >> change;std::cin knows how to read it in.
You also can just do std::cout << "Quarters: " << coins << std::endl;
std::cin knows how to read in some types by default, and all integral types and double, float are included. std::cout also knows how to print those types.
I'm not sure what you meant to do with cin >> change>=10; but I'm guessing you meant to test if (change >= 10).
You have a problem with change and remainder though.
Line 18: You calculate the remainder, but then at line 20, you test change >= 10. You should either test remainder, or decrement change by the value of the coins issued.
Same for nickels and pennies.
PLEASE USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post. http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.
That's because you're missing a } at the end of your code.
If you used code tags and indented your code you would have noticed that the last line was indented incorrectly, and would have been able to fix your braces.
Also, if you read the error message, you probably could have discerned that the compiler couldn't find a } at the end of the file.
You have been asked multiple times to use code tags. PLEASE DO SO. http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.
If you're not going to make the slightest bit of effort to make your posts readable, why should we spend the slightest bit of effort helping you?
I will not respond further until you apply code tags.