Question: The code must be in java please make screenshots to show that the code is working Question#3. Consider the attached input and output files for

The code must be in java

please make screenshots to show that the code is working

Question#3. Consider the attached input and output files for solving the below three problems using recursions. You will write a program that will read a set of commands from the input file and execute the relevant recursive method to get the required output, which is shown in the attached output file. Each command in the input file is followed (on the same line of input) by the respective parameters required for executing the recursive method. [15 points for writing the main method, 15 points for writing the recursive method for each of the below problems]:

please solving the question , you must make input file and name it "input.in.txt" that contains the following commands that the program will use in order to work (You should open and read this file automatically in the main program without prompting the user to enter the name of the input file). The first line of the input file will contain one positive integer, which represents the number of commands (lines) following that line in the input file.

"

8 eliminateDigit 11712 1 eliminateDigit 332 4 eliminateDigit 666 6 findLargest 32;4;21;-87;3;0;49;143;47 findLargest -32;-4;-21;-87;-3;-43;-7 shuffle abcd efgh shuffle abc fgkl shuffle abcd efg

"

Each of the following n lines in the input file contains a command, which is followed, in the same line, by the required parameters. The commands of the 3 recursive methods, and their required parameters data, are described below:

eliminateDigit: This command will be followed by two integers, a and b where b is a one digit number.

findLargest: This command will be followed by a set of integers numbers which are separated by ';'.

shuffle: This command will be followed by two strings.

Problem#1. Write a recursive method eliminateDigit which accepts a positive integer M (greater than 0) and a digit K and returns an integer number N, such that N is a new number without the K digit occurrences of M. If all M digits are equal to the K digit, then return 0.

Consider the following output examples:

Example 1:

Command: eliminateDigit 11712 1

Output: 72 is the number without digit 1

Example 2:

Command: eliminateDigit 332 4

Output: 332 is the number without digit 4

Example 3:

Command: eliminateDigit 666 6

Output: 0 is the number without digit 6

Problem#2. Write a recursive method called findLargest that accepts only one parameter which is an array of integer numbers and returns the smallest number in that array. Consider the following output examples:

Example 1:

Command: findLargest 32;4;21;-87;3;0;49;143;47

Output: The largest number is: 143

Example 2:

Command: findLargest -32;-4;-21;-87;-3;-43;-7

Output: The largest number is: -3

Problem#3. Write a recursive method called shuffle that accepts two strings of characters, S1 and S2. The method will return a shuffled string of S1 and S2. The shuffled string will interchange the characters of S1 and S2, respectively. So that the first character of S1 will be followed by the first character of S2, and so on. Consider the following output examples:

Example 1:

Command: shuffle abcd efgh

Output: aebfcgdh is the shuffle of abcd efgh

Example 2:

Command: shuffle abc fgkl

Output: afbgckl is the shuffle of abc fgkl

Example 3:

Command: shuffle abcd efg

Output: aebfcgd is the shuffle of abcd efg

Your program must produce an output file, called "output.out.txt".

please solve fast the question

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!