Advertisement
35657

Untitled

Dec 26th, 2023
944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.    
  8.     srand(time(NULL));
  9.  
  10.     int size;
  11.  
  12.     cout << "Enter size: ";
  13.  
  14.     cin >> size;
  15.  
  16.     int* arr = new int[size]; // динамическое выделение памяти
  17.  
  18.     for (int i = 0; i < size; i++) {
  19.         arr[i] = rand() % 100;
  20.         cout << arr[i] << " ";
  21.     }
  22. }
  23.  
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement