lunes, 2 de septiembre de 2013

Programando en C++ ... no.2

1. Clases, crear una clase llamada "Fecha" y mostrar sus propiedades.
#include "iostream.h"
#include "stdio.h"
#include "time.h"
#include "stdlib.h"

class Fecha{
      private:
              int dia;
              int mes;
              int anyo;
   
      public:
             Fecha();
             virtual ~Fecha();
           
             Fecha(int dia,int mes, int anyo){
                       this->dia=dia;
                       this->mes=mes;
                       this->anyo=anyo;
             }
           
             void setDia(int dia){this->dia=dia;}
             void setMes(int mes){this->mes=mes;}
             void setAnyo(int anyo){this->anyo=anyo;}
           
             int getDia(){return this->dia;}
             int getMes(){return this->mes;}
             int getAnyo(){return this->anyo;}
             
};

Fecha::Fecha(){
             cout<<"Se ha creado objeto Fecha"<<endl;
}

Fecha::~Fecha(){cout<<"Se ha destruido objeto Fecha"<<endl;}


int main(){
    Fecha fecha(18,12,1981);
    cout<<"dia: "<<fecha.getDia()<<"  mes: "<<fecha.getMes()<<"  anyo: "<<fecha.getAnyo()<<endl;
    system("PAUSE");
    return 0;
}

Links:
Libro C/C++/Java

No hay comentarios:

Publicar un comentario