можете пожайлуста более в понятной форме пояснить свой вопрос
если я вас правильно понела то
нудно нажать на F 12 и ввести данный " правильный код"
<html>
<head>
<title>Slovo - Одесса</title>
<style>
html
{
height:100%;
}
body
{
margin:0;
height:100%;
background:url(Image/pr.png);
background-size:100%100%;
}
.wrapper
{
position: relative;
display: block;
min-width: 960px;
min-height: 700px;
}
.logo
{
position:absolute;
top:5px;
right:990px;
}
.logo1
{
position:absolute;
top:645px;
right:2000px;
}
.logo2
{
position:absolute;
top:655px;
right:1050px;
}
.logo3
{
position:absolute;
top:634px;
right:200px;
}
.logo4
{
position:absolute;
top:1000px;
right:2100px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="logo">
<a href="prdsl.html">
<img src="Image/pr1.png">
</a>
</div>
<div class="logo1">
<a href="News.html">
<img src="Image/pr2.png">
</a>
</div>
<div class="logo2">
<a href="Video.html">
<img src="Image/pr3.png">
</a>
</div>
<div class="logo3">
<a href="cntk.html">
<img src="Image/pr4.png">
</a>
</div>
<div class="logo4">
<font size="10" color="white" face="Politica">О ПРОЕКТЕ</font>
</div>
</div>
</body>
</html>
#include <iostream>
using namespace std;
int main()
{
int n; cout << "розмір квадратної матриці = ";
cin >> n;
int mt[n][n]; // оголошення матриці розмірністю n*m, де n = m = n
srand(time(NULL));
cout << "була: " << endl;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
mt[i][j]=rand()%21-10; // генерація випадкових чисел в матриці
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
cout << " " << mt[i][j]; // вивід матриці
cout << endl;
}
cout << endl << "стала: " << endl;
for (int i = 0; i < n; i++) //індексація масивів у C++ завжди з 0, тому ДО n
{
int* temp=new int[n]; // видозмінити матрицю (двовимірний масив) можна за до одновимірного динамічного масиву temp[n] або змінної temp
temp[i] = mt[n-1][i]; // записати ("покласти") в масив temp "копію" останнього (n-1) рядка матриці
mt[n-1][i] = mt[i][0]; // останній (n-1) рядок матриці обернути на перший (нульовий) стовпець матриці
mt[i][0] = temp[i]; // перший (нульовий) стовпець обернути на «копію» останнього (n-1) рядка, яка міститься в допоміжному масиві temp (зчитати з temp)
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
cout << " " << mt[i][j]; // вивід видозміненої матриці
cout << endl;
}
return 0; }