Answer to Question #66082 in Java | JSP | JSF for dave

Question #66082
Request that the user enter the radius of a circle from the keyboard and store the value entered in the double variable, radius.
1
Expert's answer
2017-03-09T09:46:06-0500
import java.util.Scanner;

public class Test {
public static void main(String args[]) {
Scanner s = new Scanner(System.in);
System.out.println("Enter the radius of a circle: ");
double radius;
do {
double temp = s.nextDouble();
radius = (temp < 0) ? -1 : temp;
if (radius == -1)
System.out.println("Enter the positive value");
} while (radius == -1);
}

}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS