class wielomian
piivate:
double wsp[ 100]; int stopień; public:
wiełomian(); void wczytaj ();
friend wielomian operator+(wielomian1 wielomian); Mend wielomian operator*(wielomian,
wielomian :wielomian()
stopień = 0;
for(inti = 0; i < 100; i++) wsp[i] = 0;
void wielomian: :wczytaj()
cout.« "Podaj stopień wielomianu: " « endl; cin » stopień; if (stopień > 100)
cout« "Stopień nie może być większy od 100" « endl; stopień =100;
for (int i = 0; i < stopień; i++)
cout« "Podaj współczynnik dlax" «i « ":" « endl; cin » wsp[i];
int main(int argc, char *argv[])
char c;
wielomian w; w.wczytaj();
//system("PAU SE");
cin » c;