// This program asks for numbers of hours worked
// by six employees. It stores the values in an array.

#include <iostream>
#include <iomanip>
using namespace std ;

int main()
{
	/* const int NUM_EMPLOYEE = 6 ;
	int hours [NUM_EMPLOYEE] ;
	
	// Get hours worked by six employees
	cout << "Enter the hours worked by six employees: " ;
	cin >> hours [0] ;
	cin >> hours [1] ;	
	cin >> hours [2] ;
	cin >> hours [3] ;
	cin >> hours [4] ;
	cin >> hours [5] ;
	
	// Display the values in the array
	cout << "The hours you entered are: " ;
	cout << "  " << hours [0] ;
	cout << "  " << hours [1] ;
	cout << "  " << hours [2] ;
	cout << "  " << hours [3] ;
	cout << "  " << hours [4] ;
	cout << "  " << hours [5] << endl ; 
	
	int values [5] , count ;
	for (count = 0; count < 5; count ++)
		values [count] = count + 1 ;
	for (count = 0; count < 5; count ++)
		cout << values [count] << endl ; 
	
	const int NUM_FISH = 20 ;
	int fish [5] = {1, 2, 3};
	int count ;
	cout << fish [3] ;
	while (count < NUM_FISH)
	{
		cout << "Enter number of fish you caught today: " ;
		cin >> fish [count] ;
		cout << endl ;
		count ++ ;
	} */
	
	double balance [5] = {100.0, 250.0, 325.0, 500.0, 1100.0} ;
	const double INTRATE = 0.1 ;
	
	cout << fixed << showpoint << setprecision(2) ;
	for (int count = 0; count < 5; count ++)
		cout << (balance [count] * INTRATE) << endl ;
	return 0 ; 
}
