Skip to content

Instantly share code, notes, and snippets.

@Kevin-Gomez10
Created June 16, 2021 01:29
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/5a7d29c40ec49f36b48fa75351926d7d to your computer and use it in GitHub Desktop.
Save Kevin-Gomez10/5a7d29c40ec49f36b48fa75351926d7d to your computer and use it in GitHub Desktop.
POO Act13 clase Animal perro
#include <iostream>
using namespace std;
#include "animal.h"
int main()
{
Perro Punky;
Punky.cargar_datos();
Punky.VerDatos();
Punky.Comer();
Punky.Ladra();
Punky.Vacunar();
cout<<"Hecho Por Kevin Joan Gomez Rodriguez 190260224-0";
return 0;
}//fin de main
@Kevin-Gomez10
Copy link
Author

link codigo funcionando-----> https://onlinegdb.com/OqzYozejB

image

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