View Single Post
  #4  
Old 09-11-2004, 05:01 PM
Tzwizard
Sarnak
 
Join Date: Sep 2004
Location: HELL
Posts: 77
Default

Code:
#include <iostream> 
using namespace std; 
int main() 
{ 

int a = 319; 
int b; 
int c; 

cout<<"What is your password servant?"; 
cin>>b; 
{ if(b == a) 
cout<<"Find me my Onyx staff & ill reward you."; 
} 
{ if(b != a) 
cout<<"Thank you for returning my life's work."; 
} 
cin>>c; 
return 0; 
}
Reply With Quote