DEBER DE PROGRAMACION
Estudiante : Cristina Elizabeth Benítez
Orosco
Docente : Ing. Robín Zamora
Año : 2° Nivel de Informática “B”
Modulo : Programación Estructurada
Fecha :
10 de Abril del
2013
ELABORE UN
DIAGRAMA Y PROGRAMA QUE ME PERMITA INGRESAR LA EDAD DE UNA PERSONA Y ME
PRESENTE UN MENSAJE QUE ME INDIQUE SI LA PERSONA ES MAYOR O MENOR DE EDAD.
#include<conio.h>
#include<iostream.h>
void main ( )
{
int edad;
clrscr ( );
cout<<"ingrese su edad:";
cin>> edad;
if (edad>=18)
{
gotoxy(35,20);
cout<<"mayor de edad";
}
else
{
gotoxy(35,20);
cout<<"menor de edad";
}
getch();
}
No hay comentarios:
Publicar un comentario