Скажите пожалуйста почему не работает код C++ должно выводить наименьший четный элемент массива, если такого нет, то выведите первый элемент. 
#include

using namespace std;

int main()
{
cout<<"Vedit 10 elementiv:";
const int SIZE=10;
int arr[SIZE];
int min;

for (int i = 0; i < SIZE; i+=1) {
arr[i]=rand()%60;
}

for (int i = 0; i < SIZE; i+=1) {
cout << arr[i]<<' ';
}

for (int i = 0; i < SIZE; i+=1) {
if (i == 0){ min = arr[i];}
else if (arr[i] < min) min = arr[i];
}
cout << "Minimalnui element(chetnui): " << min << std::endl;
return 0;
}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.