just fooling around with a simple program.

#include<iostream.h>
#include<conio.h>
void main()
{getch();
int n;
cout<<"enter a no between 1-3."<<endl;
cin>>n;
switch(n)
{case 1:
cout<<"you won!!"<<endl;
break;
case2:
cout<<"you lost!!"<<endl;
break;
case3:
cout<<"theres a tie "<<endl;
break;
default<<"please follow the above instructions."
break;
}
}