Ask your own question, for FREE!
Computer Science 12 Online
OpenStudy (anonymous):

C++ Help? All I know is ints and strings and how to print things and comment. I need a tutor.

OpenStudy (rsmith6559):

I'll try. Just post specific questions.

OpenStudy (opcode):

It seems you know about data types, move onto learning about objects like std::cin, and std::cout. That provides your basic I/O. (You should know that you will need to learn includes/preprocessor directives.) Next I recommend learning about formatting via #include <iomanip>, if you are using printf, stop that is C, you are learning C++. Next dig into learning about scope, and switch statements, and finally functions. Then I would do learning the cool stuff C++11 provides. For example: #include <algorithm> Provides: std::min, and std::max, something that is often written using a chain of conditionals. Stuff like increases lines of code, something that usually annoys most people because it starts look ugly.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!