informatyka, wektor

Nasza ocena:

5
Pobrań: 7
Wyświetleń: 1197
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
informatyka, wektor - strona 1

Fragment notatki:


class wektor
{ private:
double x,y,z;
public:
wczytaj();
wypisz();
wektor (double, double, double);
wektor ();
double operator * (wektor);
wektor operator + (wektor);
wektor operator = (wektor);
friend wektor operator *(double, wektor);
friend istream& operator (istream&,wektor&);
};
wektor::wczytaj()
{ cinxyz; }
wektor::wypisz()
{ cout (istream& in, wektor& A)
{ in A.x;
in A.y;
in A.z;
return in;}
int main(int argc, char* argv[])
{ wektor A, B, C(1,2,3);
cout A;
A.wypisz();
B=A+C;
A=3*C;
cout ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz