Question: First, read the first floating - point number from input. Then, read the remaining floating - point numbers while the floating - point numbers are

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 -10.0 to 30.0, both exclusive. For each floating-point number read that is in the given range, output the floating-point number followed by " is accepted". Then, output the floating-point number read that causes the reading to stop followed by " is rejected". End each output with a newline.
Ex: If the input is -7.5-9.0-8.5-50.0-5.5-6.5, then the output is:
-7.5 is accepted
-9.0 is accepted
-8.5 is accepted
-50.0 is rejected
Note: -10.0 and 30.0 are not in the given range.
import java.util.Scanner;
public class CountRead {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
double dataValue;
/* Your code goes here */
}
}

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!