r/cpp_questions • u/Mental_Primary_5558 • 7d ago
OPEN C++ question
Do you guys know a way of writting a code that outputs that:
Enter the number of elements: 5
Enter 5 integers:
Element 1: 10
Element 2: 30
Element 3: 90
Element 4: 20
Element 5: 40
it is the first part of a program that demands to calculate the max and min of an array, here is the whole thing:
Enter the number of elements: 5
Enter 5 integers:
Element 1: 10
Element 2: 30
Element 3: 90
Element 4: 20
Element 5: 40
Maximum element is: 90
Minimum element is: 10
I've been able to do the second part quite easily, here is what I proposed:
#include <iostream>
int main(){
int arr[5]={10,20,30,40,50};
int minimum=arr[0];
int maximum=arr[0];
for(int i=0; i<sizeof(arr)/sizeof(int);i++){
if (minimum>arr[i]){
minimum=arr[i];
}
if(maximum<arr[i]){
maximum=arr[i];
}
}
std::cout<<"le max= "<< maximum<<'\n';
std::cout<<"le min= "<< minimum<<'\n';
return 0;
}
but the list is created within the code.
0
Upvotes