Advertisement
Guest User

header

a guest
Mar 26th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. class Polynomial
  4. {
  5.     unsigned int stopien;
  6.     double wspol[];
  7. public:
  8.     Polynomial(unsigned int = 1);//domyslnie
  9.     ~Polynomial();
  10.     void wczytaj();//wczytuje stopien wielomianu
  11.     void wspolczynniki(int, double); //wysylam wskaznik bo chce pracowac na oryginale
  12.     void wypisz(int, double); //wypisuje wielomian
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement