Program Ideas

I need more advanced program ideas. Thanks.
Last edited on
If you can try to make something like this:
http://www.softperfect.com/products/networx/
Any game ideas?
closed account (z05DSL3A)
mcqueen, How many times are you going to start this thread?

http://www.cplusplus.com/forum/lounge/42759/#msg231120
http://www.cplusplus.com/forum/general/42752/#msg231089
Well do you guys have any game ideas?
I still play DxBall, you can try something like that?
http://www.magicwandsoft.com/games/dxball/
Last edited on
mcqueen, you should write a program that writes programs that write programs, that way your programs will write your programs for your programs.

programs.
no, no way, ceruleus
@ OP (that's you mcqueen): From what I've seen in other posts you should work on understanding objects before moving much further.
I created a text based game that uses
1
2
3
4
5
int thing;
cout<<"what do you do?\n";
cout<<"1.kill him\n";
cout<<"2.kill her\n";
cin>>thing;

and then
1
2
3
4
5
6
7
8
if (thing =1)
{
//code here
}
if (thing =2)
{
//code here
}


so basically it creates a scenario that and then the user inputs his decision.

@Grey Wolf, I think OP just want to know ideas rather than working on them. :)
Topic archived. No new replies allowed.