Skip to content

Instantly share code, notes, and snippets.

View FraGoTe's full-sized avatar
🏠
Working from home

Francis Gonzales FraGoTe

🏠
Working from home
  • Lima, Perú
  • 19:57 (UTC -05:00)
View GitHub Profile
#include<iostream>
#include <math.h>
using namespace std;
class Figura {
private:
float base;
float altura;
public:
void captura();
#include <iostream>
using namespace std;
class base {
int i, j;
public:
void set(int a, int b) { i = a; j = b; }
void mostrar() { cout << i << " " << j << "\n"; }
class ClaseDerivada : acceso ClaseBase
{
//cuerpo de la nueva clase
}
int main()
{
cout << "***Entramos a main" << endl;
Prueba objeto(0);
{
cout << "***Entramos al bloque" << endl;
Prueba objetoA(1);
Prueba objetoB(2);
//definiciones de las funciones miembro
Prueba::Prueba(int numero)//constructor.
{
x = numero;
cout << "Se ejecuta el constructor del objeto nro: " << (*this).x << endl;
}
Prueba::~Prueba()
{
#include <iostream>
using std::cout;
using std::endl;
#include <new>
class Prueba
{
public:
// Demostración de un constructor predeterminado para la clase Tiempo.
#include <iostream>
using std::cout;
using std::endl;
// incluye la definición de la clase Tiempo desde tiempo2.h
#include "tiempo2.h"
int main()
{
// Declaración de la clase Tiempo.
// Las funciones miembro se definen en tiempo2.cpp
// previene la inclusión múltiple del archivo de encabezado
#ifndef TIEMPO2_H
#define TIEMPO2_H
// Definición del tipo de dato abstracto Tiempo
class Tiempo {
Building.floors = 5;
Building.currentFloor = 3;
Building CentroCivico;
CentroCivico->goUpStairs();
Building CentroCivico;
goUpStairs(&CentroCivico);