Guest User

Untitled

a guest
Sep 1st, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. int main()
  5. {
  6. int a;
  7. std::cout << "Podaj rozmiar tablicy" << std::endl;
  8. std::cin >> a;
  9.  
  10. const int r = a;
  11. int tab[r];
  12.  
  13.  
  14.  
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment