Vangald Posted October 8, 2008 Share Posted October 8, 2008 Ok. Pretend it is your first day of programming. You know nothing. You are a Noob. What do you think are the best first 10 programs you should start making? Skip "hello world" since it is the absolute first step no matter what. You can make lists for different languages if you wish. Quote Link to comment Share on other sites More sharing options...
RogueHart Posted October 8, 2008 Share Posted October 8, 2008 1. an addition program. as in "enter 2 numbers." "the sum of the numbers is" teaches simple input output 2. a small txt adventure game. (check the wiki under community projects for a small one). takes input output to another level 3. a guessing game. randomization + input output. thats all i have for you Quote Link to comment Share on other sites More sharing options...
digip Posted October 8, 2008 Share Posted October 8, 2008 Basic text editor. Open, edit and save text files. Image crop, resize and image viewer. String manipulation, math calculations, and format conversions (like ascii to hex or hex to binary, base64, then back to plain text, or md5 hashing, make yoru own md5 converted wordlists to crack passwords). Those were some of the one first things I did with programming, learning how to open files and edit them and save information to output files. Manipulating strings of data and such. Then working with loops and arrays(which I still struggle with arrays at times since I do not program on a regular basis). Moved on from there to the web side with PHP and MySql, entering data into databases, pulling the data out and displaying it in a readable format, formatting it for use like plotting pins on a google map, etc. Quote Link to comment Share on other sites More sharing options...
Brent Posted October 9, 2008 Share Posted October 9, 2008 C++ Setting variables and displaying Logic on variables and displaying Data types and I/O Calculations and other math operations Defining arrays Sorting arrays (bubble sort, swap sort) Banking interest rates for different durations NFL Passer Rating calculation Pointers Intro Vectors Intro I believe that about sums up my CmpSci 101 I took in College. The next class would get into more OO principles - classes, objects, polymorphism, etc Quote Link to comment Share on other sites More sharing options...
jollyrancher82 Posted October 10, 2008 Share Posted October 10, 2008 There are no "top ten programs" if you're a beginner. You'll simply create small applications to learn the basics of the language. Once you know these you'll create programs. Quote Link to comment Share on other sites More sharing options...
bbq Posted October 13, 2008 Share Posted October 13, 2008 Create an ATM machine using objects... classes etc... Then create a media player... ^_^ Quote Link to comment Share on other sites More sharing options...
m0u53 Posted October 13, 2008 Share Posted October 13, 2008 i created alot of console programs in C++ before i dove into GUI and know i know quite alot about it..basicly find out what you wanna do at the end... and take small steps first i learned about WinMain then the WindowsProcedure then the WNDCLASSEX then button controls edit controls etc..etc Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.