Question: ACTIVITY 4 . 3 . 4 : While loops with numbers. 5 2 8 0 4 0 . 3 4 8 9 5 2 8

ACTIVITY
4.3.4: While loops with numbers.
528040.3489528.qx3zqy7
Jump to level 1
First, read the first floating-point number from input. Then, read the remaining floating-point numbers while the floating-point numbers are in the range -5.0 to 45.0, both exclusive. Output the total number of floating-point numbers read in the given range, including the floating-point number that causes reading to stop. End with a newline.
Ex: If the input is 1.5-1.0-3.5,1.0-24.5,4.0, then the output is:
Number of floating-point numbers read: 5
Note: -5.0 and 45.0 are not in the given range.
import java.util.Scanner;
public class NumCounts {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
double inputvalue;
int numcounts;
numCounts =;
I* Your code goes here */
}
}
1
2
 ACTIVITY 4.3.4: While loops with numbers. 528040.3489528.qx3zqy7 Jump to level 1

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!