cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Looking For (A) Beginner Project(s).
Looking For (A) Beginner Project(s).
Sep 23, 2015 at 1:09am UTC
intrivid
(2)
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!
Sep 23, 2015 at 1:14am UTC
Hippogriff
(727)
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).
Sep 23, 2015 at 1:17am UTC
intrivid
(2)
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.
Sep 23, 2015 at 1:33am UTC
Outlaw782
(100)
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.