Well, I'm making a chat bot thing (in cmd promt) using Dev C++.

This is what I have:

Code:
cout << "what is your name?" << endl;
cin >> inputName

if(inputName>= 20 char) cout << "Your REAL name, please." << endl;

else

cout << Thats a very funny name, << inputName << ". Very funny..." << endl;
NOTE: Thats not all I have. I got the headers, declarations and other stuff too.

So now I need to have the bot say different things. So I'll have 4 other possible sayings, and the bot will randomly choose to say them with the input.

Need help on that.