xes in both strings that contain vowels [a, e, i, o, u, y, A, E, I, O, U, Y] and should output the index where both strings contained a vowel. For example, in the strings "hello" and "bully, the characters at indexes 1 and 4 match since both contain vowels at that index. For each pair of lines, your method should print output showing the character indexes that match, separated by spaces in the format shown below.  If no characters match, print "none" instead as shown below. For example, suppose the input file contains the following

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a static method named "compareLines" that accepts one parameter (a Scanner attached to an input file). Your method should compare each neighboring pair of lines (the 1st and 2nd lines, then the 3rd and 4th lines, and so on) looking for indexes in both strings that contain vowels [a, e, i, o, u, y, A, E, I, O, U, Y] and should output the index where both strings contained a vowel.

For example, in the strings "hello" and "bully, the characters at indexes 1 and 4 match since both contain vowels at that index.

For each pair of lines, your method should print output showing the character indexes that match, separated by spaces in the format shown below.  If no characters match, print "none" instead as shown below.

For example, suppose the input file contains the following text. 
(Line numbers and character indexes are shown around the input and matching characters are shown in bold, but these markings do not appear in the actual file.)

0123456789012345678901234567890123456789 (String index)  

The quick brown fox
Those achy down socks
Wheels on the school bus go round
The wipers go swish swish swish
This name is Robert Peltson
So long ‘n thanks for all the fish
Humpty Dumpty saoa wall
and then he also haa great fall

When passed the above file, your method would produce the following output:
lines 1 and 2: 2 6 12 17
lines 3 and 4: 2 7 12 22
lines 5 and 6: none
lines 7 and 8: 12 15 18 21

Notice that lines are not generally the same length. 
You may assume that the file contains an even number of lines.

import java.util.*;
import java.io.*;
public class MatchIndex {
 
  public static void main(String[] args) throws FileNotFoundException {
    Scanner fileIn = new Scanner(new File("test.txt"));
    compareLines(fileIn);
  }
      // *** Your method code goes here ***

} // End of MatchIndex class

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education