Recent content by nagantman

  1. N

    New to C++

  2. N

    New to C++

    #include <iostream> #include <string> using namespace std; int main () { string username; string password; cout << "Enter your username: " << "\n"; getline( cin, username, '\n' ); cout << "Enter your password: " << "\n"; getline( cin, password, '\n' ); if ( username == "root" &&...
  3. N

    New to C++

    Hello everyone I just started getting into C++ programming. I am running Ubuntu 12.04, and using the Vim text editor from the Terminal. Currently I am following a guide, that starts with the most basic of writing code. I was just hoping if anyone could give me any pointers when it comes to...