#include <iostream>
using namespace std;
void MaxNumbers() {
int x, _max;
cout << "Введите 7 чисел: ";
cin >> _max;
for (size_t i = 0; i < 6; i++)
{
cin >> x;
if (x > _max)
_max = x;
}
cout << "\nMAX:" << _max;
signed main() {
setlocale(LC_ALL, "Rus");
MaxNumbers();
return 0;
#include <iostream>
using namespace std;
void MaxNumbers() {
int x, _max;
cout << "Введите 7 чисел: ";
cin >> _max;
for (size_t i = 0; i < 6; i++)
{
cin >> x;
if (x > _max)
_max = x;
}
cout << "\nMAX:" << _max;
}
signed main() {
setlocale(LC_ALL, "Rus");
MaxNumbers();
return 0;
}