Looking For (A) Beginner Project(s).

Hey everybody, I recently started coding in C++ and i'm looking for something to improve myself and pass the time. Please keep in mind that I am fairly inexperienced, and I will probably not be able to do very advanced things.
Thanks in advance!
http://www.cprogramming.com/challenge.html
http://www.cplusplus.com/forum/articles/12974/

https://projecteuler.net/ (Will become more advanced very quickly, but they are a fun way to test your math/programming skills).
James2250 wrote:
http://www.cprogramming.com/challenge.html
http://www.cplusplus.com/forum/articles/12974/

https://projecteuler.net/ (Will become more advanced very quickly, but they are a fun way to test your math/programming skills).


Thanks, I'll be sure to check those out. I'm gonna wait a bit longer to see if anyone else has any suggestions.
Make a program that helps a cashier return the amount of change they will need.

For example if a purchase total is: $82.31, and the customer handed you a $100. The cashier will return $17.69.

Which is:
1 ten dollar bill
1 five dollar bill
2 one dollar bills
2 quarters
1 dime
1 nickel
4 pennies

What you will need to tell the cashier is what I told you exactly above:

How many of each bill
How many of each coin

Hint: Once you get down to the coins it is wise to use the modulus (%) operator.
Topic archived. No new replies allowed.