Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

0123814790, 9780123814791

More Books

Students also viewed these Databases questions

Question

An ICER value indicates which of two treatment options is better.

Answered: 1 week ago

Question

To solve p + 3q = 5z + tan( y - 3x)

Answered: 1 week ago