Monday, February 16, 2009

EXERCISE7




























#include
#include
#include
void menu();
void nextscreen();
void nextscreen2();

void nextscreen()
{
clrscr();
int x,y,z;
for(x=1;x<=77;x++)
{
gotoxy(2+x,1);textcolor(RED);cprintf("Í");
delay (10);
gotoxy(2+x,21);textcolor(RED);cprintf("Í");
delay (10);
}
for(y=1;y<=20;y++)
{
gotoxy(3,1+y);textcolor(RED);cprintf("º");
delay (10);
gotoxy(79,1+y);textcolor(RED);cprintf("º");
delay (10);
}
gotoxy(3,1);textcolor(RED);cprintf("É");
gotoxy(3,21);textcolor(RED);cprintf("È");
gotoxy(79,1);textcolor(RED);cprintf("»");
gotoxy(79,21);textcolor(RED);cprintf("¼");
}
void menu()
{
nextscreen();
nextscreen2();
int choice,a,b,n,y,sum=0,subtraction=0,multiplication=0,division=0,z;
gotoxy(30,5);textcolor(YELLOW);cprintf("W E L C O M E ! ! !");
gotoxy(26,6);textcolor(YELLOW);cprintf("Select operation you like to Try!");
gotoxy(25,8);textcolor(YELLOW+BLINK);cprintf("[A] for the ADDITION");
gotoxy(25,9);textcolor(GREEN);cprintf("[B] for the SUBTRACTION");
gotoxy(25,10);textcolor(LIGHTMAGENTA+BLINK);cprintf("[C] for the MULTIPLICATION");
gotoxy(25,11);textcolor(LIGHTBLUE);cprintf("[D] for the DIVISION");
gotoxy(25,12);textcolor(RED+BLINK);cprintf("[E] for the Exit");
getch();
clrscr();
gotoxy(25,14);textcolor(CYAN);cprintf("Enter your choice operation here:");
scanf("%s",&choice);

switch(choice)
{
case 'A':

clrscr();

nextscreen();
nextscreen2();
gotoxy(25,5);textcolor(RED);cprintf("A.] A D D I T I O N");
gotoxy(25,6);textcolor(RED);cprintf("Enter number/s:");
scanf("%d",&a);

gotoxy(25,8);textcolor(BLUE);cprintf("Enter other number/s:");
scanf("%d",&b);
sum=a+b;
gotoxy(25,10);textcolor(YELLOW+BLINK);cprintf("The Sum of two numbers is: %d",sum);
gotoxy(25,12);textcolor(CYAN);cprintf("W O W !!!\n");
gotoxy(25,14);textcolor(LIGHTBLUE);cprintf("You want to try the others?");
scanf("%s",&z);
menu();
getch();

break;
}

switch(choice)
{
case 'B': clrscr();
nextscreen();
nextscreen2();
gotoxy(25,5);textcolor(YELLOW);cprintf("B.] S U B T R A C T I O N");
gotoxy(25,6);textcolor(RED);cprintf("Enter number/s:");
scanf("%d",&a);
gotoxy(25,8);textcolor(LIGHTCYAN);cprintf("Enter other number/s:");
scanf("%d",&b);

subtraction=a-b;
gotoxy(25,10);textcolor(YELLOW+BLINK);cprintf(" The Subtraction of two numbers is: %d",subtraction);
gotoxy(25,12);textcolor(CYAN);cprintf("W O W !!!");
gotoxy(25,14);textcolor(LIGHTBLUE);cprintf("You want to try the others?");
scanf("%s",&z);
menu();
getch();

break;
}

switch(choice)
{
case 'C':
clrscr();
nextscreen();
nextscreen2();
gotoxy(25,5);textcolor(YELLOW);cprintf("C.] M U L T I P L I C A T I O N");
gotoxy(25,6);textcolor(RED);cprintf("Enter number/s:");
scanf("%d",&a);
gotoxy(25,8);textcolor(BLUE);cprintf("Enter other number/s:");
scanf("%d",&b);
multiplication=a*b;
gotoxy(25,10);textcolor(YELLOW+BLINK);cprintf("The Muliplication of two number is: %d",multiplication);
gotoxy(25,12);textcolor(CYAN);cprintf("W O W !!!");
gotoxy(25,14);textcolor(GREEN);cprintf("You want to try the others?");
scanf("%s",&z);
menu();
getch();

break;
}

switch(choice)
{
case 'D':
clrscr();
nextscreen();
nextscreen2();
gotoxy(25,5);textcolor(YELLOW);cprintf("D.] D I V I S I O N");
gotoxy(25,6);textcolor(LIGHTRED);cprintf("Enter number/s:");
scanf("%d",&a);
gotoxy(25,8);textcolor(LIGHTCYAN);cprintf("Enter other number/s:");
scanf("%d",&b);
division=a/b;
gotoxy(25,10);textcolor(YELLOW+BLINK);cprintf("The Division of two numbers is: %d",division);
gotoxy(25,12);textcolor(CYAN);cprintf("W O W !!!");
gotoxy(25,14);textcolor(LIGHTGREEN);cprintf("You want to try the others?");
scanf("%s",&z);
menu();
getch();

break;
}



switch(choice)
{
case'E':
getch();
clrscr();
gotoxy(15,18);textcolor(CYAN);cprintf("Thank you!!! GOD BLESS!!!Bye...Bye...Bye...");

}


}
void nextscreen2()

{
clrscr();
int a,b,x,y,z;

for(x=1;x<=77;x++)
{
gotoxy(2+x,1);textcolor(LIGHTCYAN);cprintf("Í");
gotoxy(2+x,21);textcolor(LIGHTCYAN);cprintf("Í");
}
for(y=1;y<=20;y++){
gotoxy(3,1+y);textcolor(LIGHTCYAN);cprintf("º");
gotoxy(79,1+y);textcolor(LIGHTCYAN);cprintf("º");
}
gotoxy(3,1);textcolor(RED);cprintf("É");
gotoxy(3,21);textcolor(RED);cprintf("È");
gotoxy(79,1);textcolor(RED);cprintf("»");
gotoxy(79,21);textcolor(RED);cprintf("¼");
for(a=1;a<=49;a++)
{
gotoxy(15+a,4);textcolor(LIGHTBLUE);cprintf("ß");
gotoxy(15+a,17);textcolor(LIGHTBLUE);cprintf("Ü");
}
for(b=1;b<=14;b++)
{
gotoxy(16,3+b);textcolor(LIGHTBLUE);cprintf("°");
gotoxy(65,3+b);textcolor(LIGHTBLUE);cprintf("° ");
}
}
void main()
{
clrscr();

nextscreen();
nextscreen2();
menu();
getch();

}

No comments:

Post a Comment