sábado, 6 de abril de 2013

CCP Nº 1-


DEBER DE PROGRAMACION Nº 1
Nombre        : Cristina Benítez
Docente        : Ing. Robín Zamora
Fecha                        : 05 de Abril del 2013

REALIZAR UN PROGRAMA QUE NOS PERMITA VISUALIZAR UNA CARATULA

#include<conio.h>
#include<iostream.h>
void main()
{
  clrscr ();
  cout<<"                                   CARATULA"<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl ;
  cout<<"          NOMBRE: "cristina benitez orosco"<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl ;
  cout<<"          NIVEL:segundo nivel B"<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl ;
  cout<<"          MATERIA:PROGRAMACION ESTRUCTURADA"<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl ;
  cout<<"                                   A¤O LECTIVO"<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl<<endl;
  cout<<"                              2013     -       2014"<<endl<<endl;
  getch();
}







REALIZAR UN PROGRAMA QUE NOS PERMITA VISUALIZAR EL NOMBRE Y LA EDAD DE UNA PERSONA

#include<conio.h>                                                                                                                                                                                                                                                                                                  
#include<iostream.h>
void main()
{
  clrscr();
  char n [30];
  int an,e;
  cout<<"ingrese su nombre"<<endl<<endl<<endl<<endl<<endl;
  cin>>n;
  cout<<"ingrese su a¤o de nacimiento"<<endl<<endl<<endl<<endl<<endl;
  cin>>an;
  e=2013-an;
  cout<<"                       BIENVENIDO:"<<n<<endl<<endl<<endl ;
  cout<<"su edad es"<<endl;
  cout<<e<<endl;
  getch();
}

No hay comentarios:

Publicar un comentario