Question: (Intro to Java help?) Write a static method named fixSpacing that accepts a Scanner representing a file as a parameter and writes that file's text
(Intro to Java help?)
Write a static method named fixSpacing that accepts a Scanner representing a file as a parameter and writes that file's text to the console, with multiple spaces or tabs reduced to single spaces between words that appear on the same line.
For example, if the input file contains the following text,
four score and
seven years ago our
fathers brought forth
on this continent
a new
nation
then your method should produce the following output:
four score and
seven years ago our
fathers brought forth
on this continent
a new
nation
Notice that some lines might be blank. Each word is to appear on the same line in the output on which it appears in the input file.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
