Question:
Write a Java program Format.java, to read a passage from an input file passage.txt and
print to another file newPassage.txt the same passage with the following changes:
Each sentence should be printed on a new line.
All numbers should be removed.
The program should also keep track of and print (to the same file) how many times each
vowel appears.
My solution that doesn't work :