Problema : Tres personas deciden invertir su dinero para fundar su empresa. Cada una de ellas desea invertir una cantidad distinta. Obtener el porcentaje que cada individuo invierte con respecto a la cantidad total invertida.
CÓDIGO FUENTE:
#include<stdio.h>
#include<conio.h>
main()
{
int p_1,p_2,p_3,cantidad_total,c_1,c_2,c_3;
printf ("INGRESE LA CANTIDAD DE LA PRIMERA PERSONA:\n");
scanf ("%d",&c_1);
printf ("INGRESE LA CANTIDAD DE LA SEGUNDA PERSONA:\n");
scanf ("%d",&c_2);
printf ("INGRESE LA CANTIDAD DE LA TERCERA PERSONA:\n");
scanf ("%d",&c_3);
cantidad_total=c_1+c_2+c_3;
p_1=(c_1*100)/cantidad_total;
p_2=(c_2*100)/cantidad_total; p_3=(c_3*100)/cantidad_total;
printf ("LA CANTIDAD TOTAL DE LA INVERSION ES: $ %d \n",cantidad_total);
printf ("LA PRIMERA PERSONA APORTO EL: %d por ciento DE LA CANTIDAD TOTAL\n",p_1);
printf ("LA SEGUNDA PERSONA APORTO EL: %d por ciento DE LA CANTIDAD TOTAL\n",p_2);
printf ("LA TERCERA PERSONA APORTO EL: %d por ciento DE LA CANTIDAD TOTAL\n",p_3);
getch();
return 0;
}
#include<conio.h>
main()
{
int p_1,p_2,p_3,cantidad_total,c_1,c_2,c_3;
printf ("INGRESE LA CANTIDAD DE LA PRIMERA PERSONA:\n");
scanf ("%d",&c_1);
printf ("INGRESE LA CANTIDAD DE LA SEGUNDA PERSONA:\n");
scanf ("%d",&c_2);
printf ("INGRESE LA CANTIDAD DE LA TERCERA PERSONA:\n");
scanf ("%d",&c_3);
cantidad_total=c_1+c_2+c_3;
p_1=(c_1*100)/cantidad_total;
p_2=(c_2*100)/cantidad_total; p_3=(c_3*100)/cantidad_total;
printf ("LA CANTIDAD TOTAL DE LA INVERSION ES: $ %d \n",cantidad_total);
printf ("LA PRIMERA PERSONA APORTO EL: %d por ciento DE LA CANTIDAD TOTAL\n",p_1);
printf ("LA SEGUNDA PERSONA APORTO EL: %d por ciento DE LA CANTIDAD TOTAL\n",p_2);
printf ("LA TERCERA PERSONA APORTO EL: %d por ciento DE LA CANTIDAD TOTAL\n",p_3);
getch();
return 0;
}