#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
while(1)
{
char choice[2];
cout << ":: Menu::" << endl;
cout << " 1. Daran is a fag?" << endl;
cout << " 2. Daran dosent know how to program." << endl;
cout << " 3. A joke?" << endl;
cout << " 4. I dont like you." << endl;
cout << " 5. Exit Program" << endl;
cout << " Choice: ";
cin >> choice;
if (choice[0] == '1')
{
system ("CLS"); //BASIC SYSTEM COMMAND TO CLEAR PROMPT
cout << "Daran Likes Boys, What a fag!";
system ("pause"); //BASIC SYSTEM COMMAND TO PREVENT CLOSING
system ("CLS");
}
// CHOICE 1'S NOTES APPLY TO ALL
else if (choice[0] =='2')
{
system ("CLS");
cout << "What dose CLS do on a windows machine?........ it clears text in the prompt....it was used to clear the text for you to get to the answer ";
system ("pause");
system ("CLS");
}
else if (choice[0] =='3')
{
system ("CLS");
cout << "Darans Life o.0!";
system ("pause");
system ("CLS");
}
else if (choice[0] =='4')
{
system ("CLS");
cout << "i dont like you <3";
system ("pause");
system ("CLS");
}
else if (choice[0] =='5')
{
system ("CLS");
cout << "Exit";
return 0;
}
else if (choice[0] > '3' || choice[2] < '1') //user imput validation
{
system ("CLS");
cout << "Invalid Imput";
system ("Pause");
system ("CLS");
}
else
{
system ("CLS");
cout << "Invalid Imput";
system ("Pause");
system ("CLS");
}
}
}