First time programming with C++, tips?

Post » Fri Mar 08, 2013 6:13 pm

So I'm leaving town soon, probably going to be bored, so I downloaded a few webpages of http://www.learncpp.com/ tutorial. I have no prior programming experience whatsoever, and am using Microsoft Visual Studio Ultimate 2010. Does anyone have any tips?
User avatar
David Chambers
 
Posts: 3333
Joined: Fri May 18, 2007 4:30 am

Post » Fri Mar 08, 2013 6:00 am

Yes: write everything on paper first. Start with the logic and then go to basic code in short-hand form and make sure your logic and all is good. It's what I do and it works like a charm. Much easier and faster for me than trying to work it out on a computer (I don't work well on computers, I get distracted and can't type fast and some other stuff). May not work for you down the road, but it will at least help you get started with transferring your logic to code.
User avatar
Taylor Thompson
 
Posts: 3350
Joined: Fri Nov 16, 2007 5:19 am

Post » Fri Mar 08, 2013 4:27 pm

Yes: write everything on paper first. Start with the logic and then go to basic code in short-hand form and make sure your logic and all is good. It's what I do and it works like a charm. Much easier and faster for me than trying to work it out on a computer (I don't work well on computers, I get distracted and can't type fast and some other stuff). May not work for you down the road, but it will at least help you get started with transferring your logic to code.
I disagree with the writing on paper part on the grounds that I can barely read my own writing most the time :tongue:

I do agree with start with logic first, though.

Depending on what the OP wants to do, though, I might suggest a more forgiving first language. Not that C++ is super difficult or anything, but that you have to do everything yourself. Other languages will be more willing to help you do certain things.

Programming is nothing more than problem solving, logic, a pinch of math, and the syntax requirements of your specific language. The first two are the ones most people need to work on.
User avatar
Brιonα Renae
 
Posts: 3430
Joined: Mon Oct 22, 2007 3:10 am


Return to Othor Games