Advertisement
35657

Untitled

Apr 5th, 2024
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6.  
  7. int main() {
  8.     setlocale(LC_ALL, "ru");
  9.  
  10.     int size;
  11.  
  12.     cout << "Введите размер массива: ";
  13.  
  14.     cin >> size;
  15.  
  16.     int* ptr = new int;
  17.  
  18.     int* arr = new int[size];
  19.    
  20.     for (int i = 0; i < size; i++) {
  21.         arr[i] = rand() % 100;
  22.         cout << arr[i] << " ";
  23.     }
  24.  
  25.     delete ptr;
  26.  
  27.     delete[] arr;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement