Answered step by step
Verified Expert Solution
Question
1 Approved Answer
We need to write a Method in JAVA that to clean up the String input from user (Scanner), and then use the bubblesort to sort
We need to write a Method in JAVA that to clean up the String input from user (Scanner), and then use the bubblesort to sort them out.
Here is a sample of the instructions (caller) in Test.java: String s =" 2,3/4, 1/16, 2 3/2, 2 2/4,,,1 5/2,";//code to read from keyboard via Scanner s = Utility.clean(s); System.out.println("CleanOrig=1" +s+"|"); //code to create an object of Sort SortSP obj = new SortSP(s); //SP are the initials of author System.out.println("init array of Fractions = " + obj ); obj.bubbleSP(); // sort array using bubble, insertion, or selection System.out.println("Fractions in increasing order =" + obj )
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