vote up -6 vote down star

Hi I'm 16 years old, and I am currently making a simple calculator using C++, I know most of what I need to make a calculator from youtube but I am just wondering can anyone PLEASE give me a SIMPLE, simple as in simple, not complicated english words everywhere, simple enough so a person who never program before understands please, use words like compiling and stuff is fine, just not too difficult.

Wut does the following do:

do {

switch {

}while

cin >>

and what is the difference between return 0; and return 1; and return 999999;

flag
9  
I honestly don't think this is a real question. While n00b questions are OK here, this is too broad to be covered by a single answer on StackOverflow. I suggest reading a book on C++ programming. Voting to close. – Mehrdad Afshari Sep 12 at 9:07
2  
free online books stackoverflow.com/questions/391523/… – Nick D Sep 12 at 9:34

closed as not a real question by Mehrdad Afshari, Dav, Nathan W, Nick D, Workshop Alex Sep 12 at 9:43

4 Answers

vote up 3 vote down

Take a look at This for cin and This for do/while and switch and this for functions

It is worth leaning the most important thing when learning to program: Google helps. Typing in "C++ Switch" will get you all the answers you will need about switch.

There is also a good free book online Thinking in C++

link|flag
vote up 2 vote down

You are not going to get taught C++ on a forum, that is just unreasonable. There is plenty of tutorial material available on the Web, and plenty of books too.

Try this for starters, or this.

link|flag
vote up 0 vote down

From youtube O_o? Wow, that's an unlikely medium... But yeah, reading a book or following a set of tutorials are you best bets. Don't try to short cut it, doesn't work even for simple languages, not when you must learn both language and programming in general at the same time. You can follow the path of warrior and learn from reference, but that will give you only questionable bragging rights if you survive the ordeal.

Here is the first thing that comes up in google. If you want to start coding something fast, read at least through that or something similar.

link|flag
vote up -2 vote down

Oh my god, you wanna learn C++ from scratch? That is impossible! First of all buy the book "the c++ programming language" (Stoustrup, Addison Wesley) and read it.

link|flag
1  
-1. It definitely isn't impossible to learn it from scratch – Yacoby Sep 12 at 9:14
5  
Bad recommendation IMO. It is authoritative, but definitely not 'beginner tutorial' material. It is unfortunately not the "K&R for C++" Stroustrup does not have their flair for clarity and succinctness. – Clifford Sep 12 at 9:19
1  
Deitel and Deitel How to program c++ is a beginners book which I found OK when at university, amazon.co.uk/s/… – Andrew M Sep 12 at 9:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.