Advertisement
MeehoweCK

Untitled

Sep 5th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. using namespace std;
  6.  
  7. int losuj()
  8. {
  9.    
  10. }
  11.  
  12. void wypelnij_tablice(int tablica[])
  13. {
  14.    
  15. }
  16.  
  17. void wypisz_tablice(int tablica[])
  18. {
  19.    
  20. }
  21.  
  22. int main()
  23. {
  24.     int lotto[6];
  25.     wypelnij_tablice(lotto);
  26.     wypisz_tablice(lotto);
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement