in java Doubles boxHeight and boxWeight are read from input. Output the following: boxHeight with a +/- sign, 0's as padding, a minimum of 7 characters, and 3 digits following the decimal point. boxWeight left-aligned, a minimum of 7 characters, and 2 digits following the decimal point. End each output with a newline. Ex: If the input is 4.875 9.75, then the output is: +04.875 9.75 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15     import java.util.Scanner;   public class NumFormatter { publicstaticvoidmain(String[] args) { Scannerscnr=newScanner(System.in); doubleboxHeight; doubleboxWeight;   boxHeight=scnr.nextDouble(); boxWeight=scnr.nextDouble();   /* Your code goes here */   } }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter6: Looping
Section: Chapter Questions
Problem 2PE
icon
Related questions
Topic Video
Question

in java

Doubles boxHeight and boxWeight are read from input. Output the following:

  • boxHeight with a +/- sign, 0's as padding, a minimum of 7 characters, and 3 digits following the decimal point.
  • boxWeight left-aligned, a minimum of 7 characters, and 2 digits following the decimal point.

End each output with a newline.

Ex: If the input is 4.875 9.75, then the output is:

+04.875 9.75
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
 
import java.util.Scanner;
 
public class NumFormatter {
publicstaticvoidmain(String[] args) {
Scannerscnr=newScanner(System.in);
doubleboxHeight;
doubleboxWeight;
 
boxHeight=scnr.nextDouble();
boxWeight=scnr.nextDouble();
 
/* Your code goes here */
 
}
}
 
 
 
 
 
AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Knowledge Booster
Instruction Format
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