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 two output values, the first is the minimum value that appears in the sequence and the second is the maximum value that appears in the sequence. 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 minimum value that occurs. The third line indicates the maximum value that occurs. The fourth line is blank.
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
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 minimum value that occurs. The third line indicates the maximum value that occurs. The fourth line is blank.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images