C++ Help? All I know is ints and strings and how to print things and comment. I need a tutor.
I'll try. Just post specific questions.
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.
Join our real-time social learning platform and learn together with your friends!