in java Write a for loop that iterates 8 times to find the minimum value in a list. In each iteration: Read a floating-point value from input into variable inVal. If inVal is less than lowestVal, assign lowestVal with inVal. In the first iteration, assign lowestVal with inVal since the first value read is the smallest value seen so far. Ex: If the input is 1.3 14.7 8.4 3.1 10.7 1.5 1.2 11.2, then the output is: 1.2 1 2 3 4 5 6 7 8 9 10 11 12     import java.util.Scanner;   public class LowestValues { publicstaticvoidmain(String[] args) { Scannerscnr=newScanner(System.in); doubleinVal; doublelowestVal=0.0; inti; your code here System.out.println(lowestVal); } }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 5PE
icon
Related questions
Question

in java

Write a for loop that iterates 8 times to find the minimum value in a list. In each iteration:

  • Read a floating-point value from input into variable inVal.
  • If inVal is less than lowestVal, assign lowestVal with inVal.

In the first iteration, assign lowestVal with inVal since the first value read is the smallest value seen so far.

Ex: If the input is 1.3 14.7 8.4 3.1 10.7 1.5 1.2 11.2, then the output is:

1.2
1
2
3
4
5
6
7
8
9
10
11
12
 
 
import java.util.Scanner;
 
public class LowestValues {
publicstaticvoidmain(String[] args) {
Scannerscnr=newScanner(System.in);
doubleinVal;
doublelowestVal=0.0;
inti;
your code here
System.out.println(lowestVal);
}
}
 
 
 
 
 
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT