Okay so in C++ I am trying to develop a program that can take input from a file like this one:
1.3 2.4 3.8 4.0 5 6.79 7 8 9 10 23 45 5.6 2.45 2.3
and get it to output one value per line like this:
1.3 2.4 3.8 4.0 5 6.79 7 8 9 10 23 45 5.6 2.45 2.3
my program already can open read and close the file, so that's not a problem.