Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void pisz(int t[], int n) {
  6. for (int i = 0; i < n; i++)
  7. cout << endl;
  8. }
  9.  
  10. int main() {
  11. int n;
  12. cin >> n;
  13. int tab[n];
  14. for (int &x: tab) cin >> x;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement