Thread: Jr Dev Code
View Single Post
  #14  
Old 06-02-2004, 08:06 AM
Kambic
Sarnak
 
Join Date: May 2003
Posts: 35
Default

#include <iostream>
#include <string>
using namespace std;

int main()
{
string answer;


while (answer != "Y")
{
cout << "Should Kambic be the next EQEmu Developer?" << endl;
cout << "Please type Y for 'Yes' or N for 'No':" << endl;
cin >> answer;
if (answer != "Y")
{
cout << "die irl plz" << endl;
}

}
cout << "you are teh WIN !!!" << endl;

return 0;
}
__________________
Sojourneying on the Path to Eternity...
Reply With Quote