Question #5272

2. Make a program that prints minimum and maximum of 10 numbers. Note that you cannot use 10 input variables. You should use loops for the purpose.

Expert's answer


# include<iostream.h>
# include<conio.h>
void main(){
float a[10], min, max;
int i;
for (i=0;i<=9;i++){
& cout<<"Enter a number "<<i+1<<": ";
& cin>>a[i];
}
min = a[0];
max = a[0];
for (i=0;i<=9;i++){
& if (a[i]>max) max = a[i];
& if (a[i]<min) min = a[i];
}
cout<<"Minimum is "<<min<<"\n"<<" Maximum is "<<max;
getch();
}
LATEST TUTORIALS
APPROVED BY CLIENTS