miércoles, 19 de marzo de 2014

declaracion de clases

#include<iostream>
#include<cstdlib>
#include<string>
// CLASES: DECLARACION
using namespace std;
class FIGURA {
      private:
         string nombre;
      public:
         FIGURA(string s="objeto"){nombre=s;};
         void ingresar_nombre(string);
         void mostrar_nombre();
};
void  FIGURA::ingresar_nombre(string s){
      nombre=s;
}
void  FIGURA::mostrar_nombre(){
      cout<<nombre<<endl;

int main(){
    FIGURA f("Poligono");
    //f.ingresar_nombre("Triangulo");
    f.mostrar_nombre();
    system("PAUSE");
}

No hay comentarios:

Publicar un comentario