Skip to content

Instantly share code, notes, and snippets.

@Kevin-Gomez10
Created June 1, 2021 06:38
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/59199992e009b4e355b237e9a951b37d to your computer and use it in GitHub Desktop.
Save Kevin-Gomez10/59199992e009b4e355b237e9a951b37d to your computer and use it in GitHub Desktop.
POO Act6 Figura C ++ *** main.cpp *** metodos de la clase
#ifndef figura_h
#define figura_h
class Figura{
public: //Atributo
double A;
double P;
double L;
// Metodos
void Calcula_Area();
void Calcula_Perimetro();
};//fin de Class cuadrado
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment