#include using namespace std; struct point { float x; float y; friend istream &operator>>(istream&, point&); }; istream &operator>>(istream wejscie, point& ex) { wejscie >> ex.x>>ex.y; return wejscie; } class points { point **tab; int n; public: friend ostream& operator<<(ostream&, points const&); points(int size) { tab = new point*[size]; for(int i=0; ix=i; tab[i]->y=i+1; cout<x<< " "<< tab[i]->y << endl; } } }; ostream& operator<<(ostream& wyjscie, points const& ex) { for(int i=0;ix<y<