/* Slot Machine Program by Joe Tchamitchian*/
#include
#include
#include
int main()
{
int x,a, b, c, token=4;
srand(time(0));
cout<<"\t********************************************************\n"
<<"\t* Welcome to slot machine. *\n"
<<"\t* Would you like to play? (1 to play, 2 not to play) *\n"
<<"\t********************************************************\n\n";
cin>>x;
while(token!=0)
{cout<<"You have "< <<"Pull? (1 to pull, 2 not to pull)\n\n"; cin>>x; if(x==1) { a = 1+rand() %10; b = 1+rand() %10; c = 1+rand() %10;