viernes, 16 de noviembre de 2018

PROGRAMA PARA VOTAR


PROGRAMA PARA VOTAR
#includ <conio.h>
#include <stdio.h>

                int main()
{
                int edad;
                printf ("\n Escriba su edad") ;
                scanf ("%d", &edad) ;
                               if(edad<18)
                               {
                                               printf ("\n Eres menor de edad aun no puedes votar");
                               }
                               
                                               else
                               
                                {
                                               if(edad>=18)
                                               printf ("\n Eres mayor de edad");
                                               printf ("\n ya puedes votar =D");
                                }
                               
                               
                               return 0;
                              
}

No hay comentarios.:

Publicar un comentario