Develop a program that, given a sequence S of integers as input, produces as output two sequences of positive integers, the first of which indicates all those positions in S at which S's minimum value occurs and the second of which indicates all those positions at which S's maximum value occurs. Positions are numbered starting at zero (0).
Please code in java and follow the instructions as it is.. Dont use very advanced methods. Refer the images provided for the scope and sample input and output
Develop a program that, given a sequence S of integers as input, produces as output two sequences of positive integers, the first of which indicates all those positions in S at which S's minimum value occurs and the second of which indicates all those positions at which S's maximum value occurs. Positions are numbered starting at zero (0).
Facts
Scanner has a method that returns a boolean indicating whether a next integer exists in its input stream ( hasNextInt () )
• Scanner objects can be initialized to to scan String data as input.
Input
The input will begin with a single line containing T, the number of test cases to follow. The remaining lines contain the T sequences, one line per sequence. Each of these lines contains the values in the sequence. Each such value is separated from the next by at least one space.
Output
For each sequence given as input, there should be four lines of output. The first line echos the given sequence. The second line indicates the positions at which the minimum value occurs.
The third line indicates the positions at which the maximum value occurs. The fourth line is blank.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps