0
Im learning C++ , can someone give me an idea for a program to make? (Advanced level)
6 Answers
+ 2
Visit the "dailyprogrammer" subreddit, it has some very good programming challenges of varying difficulty. Pick one you like and code a solution in C++.
0
OS
0
How advanced are we talking? What about simulating an airport? That was my fundamentals 1 project.
0
haha chill man, not THAT advanced!
I meant that I know all the basics in the advanced way;)
0
how about simple RPG.
have a player, some enemies, a dungeon and a shop. let the player level up by fighting in the dungeon, and buy/upgrade items from the shop. when the player levels up make the enemies stronger.
does that sound good?
0
I would suggest making a rogue-like. It can pretty much be an RPG-lite, you can implement simple graphics in ASCII, there's a lot of procedural generation, and there are good rogue-like development tutorials online if you need inspiration.
Or an old-school text-based game.