Skip to content

Instantly share code, notes, and snippets.

@Kevin-Gomez10
Created June 23, 2021 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kevin-Gomez10/86d7ef5b1b0234300b47afb3db205967 to your computer and use it in GitHub Desktop.
Save Kevin-Gomez10/86d7ef5b1b0234300b47afb3db205967 to your computer and use it in GitHub Desktop.
UIII POO Act16 clase estudiante herencia persona v2 ***main.cpp***
#include <iostream>
using namespace std;
#include "joan.h"
int main()
{
estudiante e1;
cout << "\nCapturando los datos de un estudiante: " << endl;
e1.capturarPersona();
e1.capturarEstudiante();
cout << "\nImprimiendo los datos de un estudiante: " << endl;
e1.imprimirPersona();
e1.imprimirEstudiante();
cout << endl;
cout<<"Hecho Por Kevin Joan Gomez Rodriguez"<<endl;
cout<<"Matricula 190260224.0 ";
return 0;
}
@Kevin-Gomez10
Copy link
Author

link codigo funcionando ------> https://onlinegdb.com/8h5bFKaoE
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment