Найти сумму столбца в этой матрице: #include
using namespace std;

int main()
{
setlocale(LC_ALL, "Rus");
srand(time(NULL));
int const p = 5;
int arr[p][p];
for (int i = 0; i < p; i++)
{
for (int j = 0; j < p; j++)
{
arr[p][p] = rand() % 10;
cout << arr[p][p] << " ";
}
cout << endl;
}
cout << endl;
}

slipnot174 slipnot174    3   20.04.2021 00:03    0

Другие вопросы по теме Информатика