Created
August 24, 2015 03:25
-
-
Save ramoscarlos/42c52e4cef7e2904e533 to your computer and use it in GitHub Desktop.
Encabezado de objeto "Chicharronera"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef CHICHARRONERA_1_0 | |
| #define CHICHARRONERA_1_0 | |
| class Chicharronera | |
| { | |
| private: | |
| float a; | |
| float b; | |
| float c; | |
| float b_cuadrada_menos_cuatro_a_c(); | |
| float calcular_raiz(); | |
| public: | |
| Chicharronera(float a, float b, float c); | |
| float raiz1(); | |
| float raiz2(); | |
| void imprimir_datos(); | |
| }; | |
| #endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment