#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystr;
cout << "What's your name? ";
getline (cin, mystr);
cout << "Hello " << mystr << ".\n";
cout << "What's your last name? ";
getline (cin, mystr);
cout << "So its " << mystr << " ?\n";
cout << "Do you like Aimbots? ";
getline (cin, mystr);
cout << "Well i havent figured out how to answer to yes or no questions yet im sorry ill get back to you later..\n";
cout << "Its all about that MPGH.net\n";
system ("pause");
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main()
{
string input="";
cout<<"Say yes or no\n";
cin>>input;
if (input=="Yes")
{
cout<<"You said Yes\n";
}
if (input=="No")
{
cout<<"You said No\n";
}
if (input!="No" && input!="Yes")
{
cout<<"You didn't say yes or no";
}
system("pause");
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystr;
cout << "What's your name? ";
getline (cin, mystr);
cout << "Hello " << mystr << ".\n";
cout << "What's your last name? ";
getline (cin, mystr);
cout << "So its " << mystr << " ?\n";
cout << "Do you like Aimbots? ";
getline (cin, mystr);
if (mystr == "no")
cout << "Well your gay...\n";
if (mystr == "No"
cout << "Well your gay...\n";
if (mystr == "NO")
cout << "Well your gay...\n";
if (mystr == "yes")
cout << "Its all about that MPGH.net\n";
if (mystr == "Yes")
cout << "Its all about that MPGH.net\n";
if (mystr == "YES")
cout << "Its all about that MPGH.net\n";
system ("pause");
return 0;
}
if (mystr == "no") cout << "message here\n"
if(xxx = "xxx" || xxx2 = "xxx" || xxx3 = "xxx")
and follow that site tutorial well 
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystr;
cout << "What's your name? ";
getline (cin, mystr);
cout << "Hello " << mystr << ".\n";
cout << "What's your last name? ";
getline (cin, mystr);
cout << "So its " << mystr << " ?\n";
cout << "Do you like Aimbots? ";
getline (cin, mystr);
if (mystr == "no" || mystr == "No" || mystr == "NO" || mystr == "Hell No")
cout << "Well then your gay..\n";
if (mystr == "yes" || mystr == "Yes" || mystr == "YES")
cout << "MPGH.net is where its at!!\n";
system ("pause");
return 0;
}
#include <windows.h>
#include <iostream>
using namespace std;
string strToLower(string convertme); //forward declaration so we can put the function behind main
int main()
{
string a = "TLDFLSDF";
a = strToLower(a); //convert the string to lowercase
cout<<a.c_str(); //print the string as char array/c style string
return 1;
}
string strToLower(string convertme)
{
for(int i=0;i<(int)strlen(convertme.c_str()); i++)
{
convertme[i] = tolower(convertme[i]);
}
return convertme;
}