#include #include using namespace std; class wektor { private: double x,y,z; public: void toString(); wektor(); wektor(double,double,double); wektor operator+(wektor&); double operator*(wektor&); wektor operator/(wektor&); }; wektor::wektor() { x=1; y=1; z=1; } wektor::wektor(double x,double y,double z) { this->x=x; this->y=y; this->z=z; } void wektor::toString() { cout<<"x="<