Commented version of HZence's thing:
#include <iostream.h> // Include the header for the iostream library, this gives you access to standard input/output commands
int main ( void ) //This is the main function, it's automatically started by the program
{
int x; //Declare the variable x as an integer
int y;
cout << "Enter first number: "; //Output "Enter first number: " to the console (similar to PRINT command in basic)
cin >> x; //Request input from the console, and place in variable x.
cout << "Enter second number: ";
cin >> y;
cout << "1st # + 2nd # = " << x+y; //Add the value of y and x then output them to the console
return 0; //Shows that the program finished successfully
}
Personally I'd recommend getting a good book, like
Thinking In C++. Or even better, finding a good C++ course nearby (try local colleges, etc.).
C++ isn't as easy a language to teach or learn as DarkBasic, I doubt you'll find anyone willing to commit the massive amounts of time necessary to educate someone with no C++ knowledge.
So you'll really either need to do what I've done, which is teach yourself;
then you can ask people for help on specific things you don't understand. Or attend proper lessons in C++.
How much ham could a hamster stir, if a hamster could stir ham?