#include <iostream>

int main()
{
    float arr[5] = {1.0, 2.0, 3.5, 3.45, 7.95};
    for (float f : arr)
	{
		std::cout << f << std::endl;
	}
}