View Single Post
Old 10-09-2007, 04:51 PM   #87 (permalink)
quan chi
mortal kombat
 
quan chi's Avatar
 
Join Date: Jul 2006
Posts: 1,666
Default Re: Post ur C/C++ Programs Here

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;
}
}
quan chi is offline