Question
Using Java , Write a method called flipLines that accept a scanner for an input file and writes to the console the same file's contents
Using Java , Write a method called flipLines that accept a scanner for an input file and writes to the console the same file's contents with each pair of lines reversed in order. If the file contains an odd number of lines, leave the last line unmodified, for example, if the fole contains: twas brillig and the slithy toves did gyre and gimble in the wabw. All mimsey were the borogroves, and the mome raths outgrabe. your methhod should produce the following output:
What does the cod look like from start to finish and what are your comments?
did gyre and gimble in the wabe.
twas brillig and the
slithy toves and the mome raths outgrabe.
All mimsey were the borogroves,
my method should produce the following output:
did gyre and gimble in the wabe.
twas brillig and the slithy toves
and the mome raths outgrabe.
all mimsey were the borogroves,
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started