Project recommendations?

What would you guys recommend as a project for someone who is new to C++ and new to programming in general.

I have been following the fantastic tutorial located on this website, the only downside is that it doesn't have any "test" projects or trials to complete.

Here is an example of my skill level:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
using namespace std;

int main ()
{
  int a,b,c;

  a=15;
  b=4;
  c = (a>b) ? a : b;

  cout << "a=15" << endl;
  cout << "b=4" << endl;
  cout << "Which is greater?" << endl;
  cout << c << endl;
  system("pause");

  return 0;
}


Any ideas on projects I can attempt would be much appreciated. I just can't think of anything practical for someone of my skill level to attempt.
Try making a deck of cards, where you type the number of cards you want to draw. It should remember which cards were already removed from the deck, and shuffle the deck after you draw all 52.
I'd say get a book and read it. C++ Primer Plus 6th Edition is an excellent book, comes with exercises at the end of each chapter and is geared towards people with no programming experience.
There are some exercises on this site too, from a member:
http://www.cplusplus.com/forum/articles/12974/

If you get stuck, just post back and you'll receive help. (:
@Ispil - I think I'm going to try the deck of cards. That sounds like it would be a challenge for me.

@Georgewashere - I'd love to get a c++ book I think I'll take a trip to the library and see what they have.

@Lynx876 - Thanks, this should keep me busy for a while.

Thanks to all three of you for your helpful responses!

Topic archived. No new replies allowed.