olaaa

Untitled

Nov 11th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <time.h>
  4. #include <stdio.h>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. int n;
  11. srand(time(NULL));
  12. cin >> n;
  13. int tab[n];
  14. for (int i = 0; i <= n; i++)
  15. {
  16. tab[i] = rand() % 10 + 1;
  17. cout << tab[i] << endl;
  18. }
  19.  
  20. returm 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment