May 17, 2011
What computer programming program should I use to make a 20 questions style game?
Posted by: kk : Category: Computer Question Answers
Question by Hilly: What computer programming program should I use to make a 20 questions style game?
I don’y really know anything about computer programming, I want to make a 20 questions style game using the binary system. What simple program could I use for this? Please remember that I’m a beginner!
Best answer:
Answer by prog
These video can teach you the basics of C++.
http://xoax.net/comp/cpp/console/index.php
You can learn enough to program that pretty quickly.
Add your own answer in the comments!
Facebook comments:
5 Responses to “What computer programming program should I use to make a 20 questions style game?”
Leave a Reply
You must be logged in to post a comment.








May 17th, 2011 at 12:44 am
Any type of programming will work. VisualBasic is simple and easy enough to use.
http://msdn.microsoft.com/en-us/vbasic/default.aspx
May 17th, 2011 at 12:54 am
any work
JavaScript would be the easiest to publish on the web
May 17th, 2011 at 1:25 am
For desktop game try Delphi
For web game use php + javascript
May 17th, 2011 at 1:48 am
use VB.net noob cake……. nah its a really easy thing to pick up…. i used to be a total butt puncher like you but then i started using the mad program and now im no where neer as weener-like as you….. just a question… who on this earth would make a program like this neway u fooooooollllll!!!!!!! freaking butt pirate
May 17th, 2011 at 2:36 am
If we assume that console or terminal output/input is enough for this and a GUI isn’t really needed, then just about any major programming language (and many minor ones) should do the trick.
Personally I’d recommend C, C++ or Python. For beginners I’d say Python is easier and rather simple. It has the plus side of not requiring the code to be compiled and it can be ran on multiple platforms (although most languages tend to be good on multiple platforms)
Program-wise, there really isn’t a single program I would recommend for coding, as most of the time a simple text editor will suffice. Specific languages may have programs better suited to the purpose (like with C and C++ where you need to compile the code) and there are some text editors that can auto-complete or colour-code commands based on what language you are using.