wtorek, 4 listopada 2014

#include <iostream>

using namespace std;


class wektor
{
    public:
        wektor(const int );
        virtual ~wektor();
        //void usun();
        void wpisz( );
        void wypisz();
        int wymiar();


    private:

        int k; // wymiar
        float *w;


};

Brak komentarzy:

Prześlij komentarz