#include #include #define g gotoxy void main() { clrscr(); char name[10]; g(35,2); printf("My Autobiography"); g(8,5); printf("I'm Argie B. Agudo,18 years old and still studying until now in UM."); printf("I live in Chavez st. Davao City ,My Parents work was "); printf("buying empty cartridge which means buying ink of computer,"); printf("My father have a small office for his work while My mother is "); printf("have a small sari-sari store in my house,actually my house is in manila. "); printf("who those who read thank you so much bye bye."); getch(); }
void main(){ clrscr(); int day; gotoxy(30,5);textcolor(YELLOW+BLINK);cprintf("._. W e L c O m e ._."); gotoxy(15,8);textcolor(GREEN);cprintf("Enter a number:"); scanf("%d",&day);
switch(day){ case 1: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Sunday"); break;
case 2: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Monday"); break;
case 3: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Tuesday"); break;
case 4: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Wednesday"); break;
case 5: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Thursday"); break;
case 6: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Friday"); break;
case 7: gotoxy(25,10);textcolor(LIGHTRED);cprintf("Saturday"); break;
default: gotoxy(20,10);textcolor(LIGHTRED);cprintf("Oops! Sorry! That day is not available!");}
getch();
}
Output: Exer3
#include #include
float num1,num2,sum=0,diff=0,pro=0,quo=0; void main(){ clrscr(); gotoxy(25,4);textcolor(YELLOW);cprintf("Basic Operations\n\n"); gotoxy(12,7);textcolor(GREEN);cprintf("Enter 1st number:"); scanf("%f", &num1); gotoxy(12,8);textcolor(GREEN);cprintf("Enter 2nd number:"); scanf("%f", &num2); sum=num1+num2; gotoxy(15,11);textcolor(MAGENTA);cprintf("Sum of %.2f and %.2f is %.2f",num1,num2,sum); diff=num1-num2; gotoxy(15,13);textcolor(MAGENTA);cprintf("Difference of %.2f and %.2f is %.2f",num1,num2,diff); pro=num1*num2; gotoxy(15,15);textcolor(MAGENTA);cprintf("Product of %.2f and %.2f is %.2f",num1,num2,pro); quo=num1/num2; gotoxy(15,17);textcolor(MAGENTA);cprintf("Quotient of %.2f and %.2f is %.2f",num1,num2,quo); getch(); }
I am Argie B. Agudo ,18 years old ,I live in Chavez st. Davao City but my Hometown is Manila ,I am study this because of my parent choice, and I am still studyind in UM in taking up BSIT, my ambition is very simple to finish my degree Course and learn more ..