in java Double width and integer amountCompleted are read from input. Output the following: width as a floating-point value in scientific notation, followed by "%". amountCompleted as an octal integer value, followed by "%". width as a floating-point value, followed by "%". End each output with a newline. Ex: If the input is 26.0 69, then the output is: 2.600000e+01% 105% 26.000000% 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15     import java.util.Scanner;   public class OutputNotation { publicstaticvoidmain(String[] args) { Scannerscnr=newScanner(System.in); doublewidth; intamountCompleted;   width=scnr.nextDouble(); amountCompleted=scnr.nextInt();   /* 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

Double width and integer amountCompleted are read from input. Output the following:

  • width as a floating-point value in scientific notation, followed by "%".
  • amountCompleted as an octal integer value, followed by "%".
  • width as a floating-point value, followed by "%".

End each output with a newline.

Ex: If the input is 26.0 69, then the output is:

2.600000e+01% 105% 26.000000%
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
 
import java.util.Scanner;
 
public class OutputNotation {
publicstaticvoidmain(String[] args) {
Scannerscnr=newScanner(System.in);
doublewidth;
intamountCompleted;
 
width=scnr.nextDouble();
amountCompleted=scnr.nextInt();
 
/* 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