#include <iostream>
#include <iomanip>		// for setpresision
using namespace std;
int main() {
float A[6] = {1.0,2.0,1.0,0.5,3.0,2.0};
float *theMin = &(A[0]);
float *walker = &(A[1]);
while (walker < &(A[6])) {
	if (*walker < *theMin)
		theMin = walker;
		walker = walker +1;
}
cout << fixed << setpression(1) << setw(5) << *theMin;
return 0;
}

jbnkj,n,njjhhjkhjkbkjbnhbbkbj,b,
