Solución |
|
#include
<stdio.h>
int
main()
{
int
edad;
printf( "\n
Introduzca edad: " );
scanf( "%i",
&edad );
if
( edad >= 0
&& edad <= 120 )
if
( edad < 2
)
printf( "\n
BEBE" );
else
if
( edad < 13
)
printf( "\n
NINIO" );
else
if
( edad < 18
)
printf( "\n
ADOLESCENTE" );
else
if
( edad < 31
)
printf( "\n
JOVEN");
else
if
( edad < 65
)
printf( "\n
ADULTO" );
else
printf( "\n
ANCIANO" );
else
printf( "\n
ERROR: Edad incorrecta." );
return
0;
} |
|
|