Thursday, February 12, 2009

exer 4


#include
#include
void main(){

clrscr();

int day;
gotoxy(28,5);textcolor(YELLOW);cprintf("Enter an integer:"); scanf("%d",&day); switch(day){ case 1: gotoxy(30,10);textcolor(BLUE);cprintf("Sunday"); break; case 2: gotoxy(30,10);textcolor(YELLOW);cprintf("Monday"); break; case 3: gotoxy(30,10);textcolor(GREEN);cprintf("Tuesday"); break; case 4: gotoxy(30,10);textcolor(RED);cprintf("Wednesday"); break; case 5: gotoxy(30,10);textcolor(GREEN);cprintf("Thursday"); break; case 6: gotoxy(30,10);textcolor(RED);cprintf("Friday"); break; case 7: gotoxy(30,10);textcolor(YELLOW);cprintf("Saturday"); break; default: gotoxy(20,10);textcolor(RED);cprintf("S O R R Y ! ! !Day is not available!!!!!");}
getch(); }

No comments:

Post a Comment