Advertisement
Guest User

RegistroPreescolar.h

a guest
Jun 19th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. struct FichaNino
  6. {
  7.  int Cedula_Representante;
  8.  int Numero_Hijo;
  9.  string Direccion;
  10.  string Nombre_Representante;
  11.  string Nombre_Nino;
  12.  string Apellido_Nino;
  13.  string Fecha_Nacimieto;
  14.  float Peso_Nino;
  15.  int Codigo_Telefonico;
  16.  int Numero_Telefonico;
  17.  char Sexo_Nino;
  18. };
  19.  
  20. class RegistroPreescolar
  21. {
  22.     private:
  23.        
  24.         FichaNino RegistroNino;
  25.  
  26.     public:
  27.  
  28.         void InsertarDatos();
  29.         void EliminarDatos();
  30.         void MostrarDatos();
  31.  
  32. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement