viernes, 16 de noviembre de 2018

PROGRAMA PARA VER QUIEN ES MAS PEQUEÑO

PROGRAMA PARA HALLAR LA PERSONA DE EDAD MAS PEQUEÑA

#include<stdio.h>
#include<conio.h>
int main()
{
int e1, e2, e3;  char p1[10], p2 [10], p3 [10];
printf ("\n INGRESE EL NOMBRE DE LA PRIMERA PERSONA:");
scanf ("%s", & p1);
printf ("\n INGRESE LA EDAD DE LA PRIMERA PERSONA:");
scanf ("%d", & e1);
printf ("\n INGRESE EL NOMBRE DE LA SEGUNDA PERSONA:");
scanf ("%s", & p2);
printf ("\n INGRESE LA EDAD DE LA SEGUNDA PERSONA:");
scanf ("%d", & e2);
printf ("\n INGRESE EL NOMBRE DE LA TERCERA PERSONA:");
scanf ("%s", & p3);
printf ("\n INGRESE LA EDAD DE LA TERCERA PERSONA:");
scanf ("%d", & e3);

if (e1<=e2  && e2<=e3)
printf ("\n LA PERSONA DE MENOR EDAD ES: %.10s", p1 );
if (e2<=e1  && e1<=e3)
printf ("\n LA PERSONA DE MENOR EDAD ES: %.10s", p2 );
if (e3<=e2  && e2<=e1)
printf ("\n LA PERSONA DE MENOR EDAD ES: %.10s", p3 );
return 0;
}

No hay comentarios.:

Publicar un comentario