#include "stdafx.h"#include #include #include using namespace std;int main(){SetConsoleCP(1251);SetConsoleOutputCP(1251);srand(time(0));int core[5][5];int t, n;bool cf, p;for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { t = 0 + rand() % 2; core[i][j] = 0 + rand() % 20; if (t == 1) { core[i][j] = -core[i][j]; } cout << " " << core[i][j] << " "; } cout << endl;}cout << endl;cout << "Последняя цифра " << endl;cin >> n;for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { if (core[i][j] % 10 == n) { cf = true; } if (core[i][j] > 0) { p = true; } }}if (cf == true) { cout << "Число, оканчивающееся на цифру " << n << " есть"<< endl;}else { cout << "Числа, оканчивающегося на цифру " << n << " нет" << endl;}if (p == true) { cout << "Положительное число есть" << endl;}else { cout << "Положительных чисел нет " << endl;}}<br>