MeehoweCK

Untitled

Oct 9th, 2020
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class TablicaInt
  6. {
  7. private:
  8.     unsigned rozmiar;
  9.     int* dane;
  10. public:
  11.     TablicaInt();           // pusty konstruktor, tworzący pustą tablicę
  12.     explicit TablicaInt(unsigned);       // konstruktor tworzący tablicę wypełnioną zerami o podanym rozmiarze
  13.     TablicaInt(unsigned, int);      // konstuktor tworzący tablicę o podanym rozmiarze, wypełnioną na każdym polu tą samą, podaną liczbą
  14. };
  15.  
  16. int main()
  17. {
  18.    
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment