Quote Originally Posted by Learning to make mmorpgs View Post
So if anyone can post some C++ commands like stuff that has a reaction
like if then or something.
I don't quite understand you but... here you go?

Code:
#include <iostream>
using namespace std;
int main()
{
int userNumber;
cout << "Hello there, please enter a number:\n";
cin >> userNumber;
cout << "zomg your IQ is " + userNumber + "?!\n";
system("PAUSE");
return 0;
}
Not sure what you wanted <_<