Код C++, принимающий элемент из массива и выводящий максимальное нечетное число
i write c++ code that accept element from array and print the max odd number location
Что я уже пробовал:
#include <iostream> using namespace std; int main() { int a[5]; int i; int c[5]; int j; cout<<"enter the numbers"<<endl; for(i=0;i<=5;i++) { cin>>a[i]; } cout<<"\nThe result is:\n"; for(i=0;i<=5;i++) { if(a[i]%2!=0) c[i]=a[i]; } //} for(int i=0;i<=5;i++) for(int j=i+1;j<5;j++) { if(c[i]>c[j]) { int temp; temp=c[i]; c[i]=c[j]; c[j]=temp; } } //for(int i=0;i<5;i++) cout<<c[i+1]<<endl; }
Patrice T
а у вас есть вопрос или проблема ?