MeehoweCK

Untitled

Apr 4th, 2020
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. void Macierz::set_wartosci()
  2. {
  3.     srand(static_cast<unsigned>(time(nullptr)));
  4.     for (int i = 0; i < liczba_wierszy; ++i)
  5.         for(int j = 0; j < liczba_kolumn; ++j)
  6.             Tablica[i][j]=rand()%100 + 1;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment