#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number;
int p = 0;
cout << "Enter the integer: "; cin >> number;
for (int i = number; i != 0; i /= 10){ // проверка на палиндром
p = p * 10 + i % 10;
}
if(number == p){
cout << "The same digits left and right sides!" << endl;
}else cout << "Not the same digits left and right sides!" << endl;
int mas[3]; // объявления массива для 3 последних цифр
for(int i = 0; i < 3; i++){ // запись в массив
mas[i] = number%10;
number /= 10;
for(int i = 0; i < 3; i++){ // вывод массива
cout << mas[i] << endl;
system("pause"); // остановка консоли
int n, m;
cout << "Rows: "; cin >> n;
cout << "Columns: "; cin >> m;
int a[n][m];
int all_sum = 0;
float average;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << "Element[" << i << "][" << j << "] = "; cin >> a[i][j];
cout << "\nShow massiv" << endl;
cout << a[i][j] << " ";
cout << endl;
all_sum += a[i][j];
average = all_sum / m;
cout << "Average " << i+1 << " row: " << average << endl;
system("pause");
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number;
int p = 0;
cout << "Enter the integer: "; cin >> number;
for (int i = number; i != 0; i /= 10){ // проверка на палиндром
p = p * 10 + i % 10;
}
if(number == p){
cout << "The same digits left and right sides!" << endl;
}else cout << "Not the same digits left and right sides!" << endl;
int mas[3]; // объявления массива для 3 последних цифр
for(int i = 0; i < 3; i++){ // запись в массив
mas[i] = number%10;
number /= 10;
}
for(int i = 0; i < 3; i++){ // вывод массива
cout << mas[i] << endl;
}
system("pause"); // остановка консоли
}
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int n, m;
cout << "Rows: "; cin >> n;
cout << "Columns: "; cin >> m;
int a[n][m];
int all_sum = 0;
float average;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << "Element[" << i << "][" << j << "] = "; cin >> a[i][j];
}
}
cout << "\nShow massiv" << endl;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << a[i][j] << " ";
}
cout << endl;
}
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
all_sum += a[i][j];
}
average = all_sum / m;
cout << "Average " << i+1 << " row: " << average << endl;
}
system("pause");
}