Write that selects and displays the maximum value of five numbers to be entered when the program is executed.
1
Expert's answer
2013-04-30T08:48:02-0400
# include<iostream.h> # include<conio.h> void main(){ float a[5], min, max; int i; for (i=0;i<5;i++){ & cout<<"Enter a number "<<i+1<<": "; & cin>>a[i]; } min = a[0]; max = a[0]; for (i=0;i<5;i++){ & if (a[i]>max) max = a[i]; & if (a[i]<min) min = a[i]; } cout<<"Minimum is "<<min<<"\n"<<" Maximum is "<<max; getch(); }
Comments
Leave a comment