El codigo es
Código
#include <iostream> #include <string> #include <cstdlib> using namespace std; struct empleados{ string nombre; string apellido; string documento; string numero; string fecha; string fingreso; }; void pausa(); int main() { empleados e1; e1.nombre="Juan Sebastian"; e1.apellido="Alape Soto"; e1.documento="C.C"; e1.numero="1068246213"; e1.fecha="04/06/1998"; e1.fingreso="05/02/2016\n\n"; empleados e2; e2.nombre="Augusto Daniel"; e2.apellido="Narvaez Baró"; e2.documento="T.I"; e2.numero="98060468184"; e2.fecha="21/05/1999"; e2.fingreso="05/02/2016\n\n"; int x, tecla; do{ system("cls"); cout<<" UNICOR S.A.S\n"; cout<<" ********** LISTADO DE EMPLEADOS ************\n"; cout<<" 1- Juan Sebastian Alape Soto \n"; cout<<" 2- Augusto Daniel Narvaez Baró \n"; cout<<" 3- Salir \n"; cout<<" ********************************************\n\n"; cout<<" Opcion: ";cin>>tecla; system("cls"); cout<<"================================================= >>UNICOR S.A.S<<\n"; switch (tecla){ case 1: cout<<" NOMBRE: "<<e1.nombre<<" APELLIDO: "<<e1.apellido<<endl; cout<<" TIPO DE DOCUMENTO: "<<e1.documento<<" N° "<<e1.numero<<endl; cout<<" FECHA DE NACIMIENTO: "<<e1.fecha<<endl; cout<<" FECHA DE INGRESO: "<<e1.fingreso<<endl; cout<<"================================================= \n"; system("pause"); break; case 2: cout<<" NOMBRE: "<<e2.nombre<<" APELLIDO: "<<e2.apellido<<endl; cout<<" TIPO DE DOCUMENTO: "<<e2.documento<<" N° "<<e2.numero<<endl; cout<<" FECHA DE NACIMIENTO: "<<e2.fecha<<endl; cout<<" FECHA DE INGRESO: "<<e2.fingreso<<endl; cout<<"================================================= \n"; system("pause"); break; case 3: cout<<"\n >>>>--- SALIENDO ---<<<<\n"; x=3; break; default: system("cls"); cout<<"Dijite un numero de 1 - 3 \a\n"; system("pause"); break; } }while(x !=3); return 0; }
Gracias