Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <time.h>
- #include <cstdlib>
- #include <iostream>
- #include <conio.h>
- #include <clocale>
- #define SIZE 5
- using namespace std;
- int main() {
- srand(time(0));
- setlocale(LC_ALL, "Russian");
- int Arr[SIZE][SIZE];
- for (int i = 0; i < SIZE; i++) {
- for (int j = 0; j < SIZE; j++) {
- Arr[i][j] = rand() % 100;
- // Этот cout для вывода, можно его удалить, если не нужен
- cout << Arr[i][j] << "\t";
- }
- // Этот тоже
- cout << endl;
- }
- int Max = Arr[0][0];
- for (int i = 0; i < SIZE; i++) {
- for (int j = 0; j < SIZE; j++) {
- if (j >= i && j <= SIZE / 2) {
- if (Arr[i][j] > Max) {
- Max = Arr[i][j];
- }
- }
- }
- }
- cout << "Максимальный элемент равен " << Max << endl;
- _getch();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement