I have a text file that contains the following:
3,5,6,7,34,89,23.66,89.5,90.22,100.33,45.33,78.44
I would like to split it up into pairs of numbers. For the first pair, I would like the first number to be 3 and the second number to be 5. For the second pair, the first number should be 6 and the second number should be 7 and so on. How would I do this in
Java?