ESTE PROGRAMA CALCULA EL IVA Y EL PRECIO NETO
/*produsto y precio*/
#include<stdio.h>
#include<conio.h>
main()
{
clrscr();
float pn,iva,pp;
char Np[20];
gotoxy(15,2); printf("dame el nombre del
producto:");
scanf("%s",&Np);
gotoxy(12,4);printf("introduce el precio del
producto:");
scanf("%f",&pp);
iva=pp*0.5;
pn=pp+iva;
gotoxy(15,6);printf("el precio neto es %.2f",pn);
getch();
return(0);
}
ESTE PROGRAMA IMPRIME EL SALARIO QUINCENAL
/*trabajo y salario*/
#include<stdio.h>
#include<conio.h>
main()
{
clrscr();
float
sn,sq,hex,sd,sh,phex,h;
char trabj[30];
gotoxy(15,2);printf("dame tu nombre:");
scanf("%s",&trabj);
gotoxy(15,4);printf("introduce el salario
quincenal:");
scanf("%f",&sq);
gotoxy(15,6);printf("introduce las horas
extras:");
scanf("%f",&hex);
sd=sq/15;
sh=sd/8;
phex=(sh*hex)*2;
sn=sq+phex;
gotoxy(15,8);printf("el nombre del trabajador
es:%s",trabj);
gotoxy(15,10);printf("el salario neto es%.2f",sn);
getch();
return(0);
}
ESTE PROGRAMA IMPRIME UNA TABLA DE MULTIPLICAR CUALQUIERA
/*TABLA MULTIPLICAR*/
#include<stdio.h>
#include<conio.h>
main()
{
int
t,c,r,l;
clrscr();
l=5;
gotoxy(5,2);printf("dame la tabla de
multiplicar:");
scanf("%d",&t);
for(c=l;c<=10;c++)
{
gotoxy(7,1);printf("%d*%d=&%d",t,c,r);
l++;
}
getch();
return(0);
}
No hay comentarios:
Publicar un comentario