Нужно написать код с++ Создать динамический двумерный массив размером nxn (вводится с клавиатуры)

yuliabler yuliabler    1   15.12.2021 19:29    0

Ответы
KOTEНОКGAB KOTEНОКGAB  15.12.2021 19:30

int cols;

   int rows;

   cout << "Введите размер столбцов ->" << endl;

   cin >> cols;

   cout << "Введите размер строк ->" << endl;

   cin >> rows;

   //выделение памяти для двумерного массива

   int **ptrarray = new int*[cols];

   for (int count = 0; count < cols; count++)

       ptrarray[count] = new int[rows];

   for (int count_row = 0; count_row < cols; count_row++)

       for (int count_column = 0; count_column < rows; count_column++)

           ptrarray[count_row][count_column] = rand() % 41 + (-20);

 

   for (int count_row = 0; count_row < cols; count_row++)

   {

       for (int count_column = 0; count_column < rows; count_column++)

           cout << setw(4) << setprecision(2) << ptrarray[count_row][count_column] << "   ";

       cout << endl;

   }

   // удаление двумерного динамического массива

   for (int count = 0; count < cols; count++)

       delete[] ptrarray[count];

       delete[] ptrarray;

Объяснение:

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика