#include <locale>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
double a[100][100];
int i, j, n;
cout << "Введите размер матрицы: " << endl;
cin >> n;
cout << "Матрицы: " << endl;
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
a[i][j] = 0 + rand() % 10;
cout << a[i][j] << " ";
}
cout << endl;
}
cout << "Измененная матрица: " << endl;
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
while (i == j && i + j == n - 1)
a[i][j] = 0;
cout << a[i][j] << " ";
}
cout << endl;
}
return 0;
}
Через while не получилось, помогите плиз.