Question: Double area, character seatChar, and integer amountChanged are read from input. Output the following: area as a floating - point value in scientific notation, followed

Double area, character seatChar, and integer amountChanged are read from input. Output the following: area as a floating-point value in scientific notation, followed by "%". seatChar as a hexadecimal integer value, followed by "%". amountChanged as an octal integer value, followed by "%". End each output with a newline. Ex: If the input is 31.75 j 84, then the output is: 3.175000e+01%6a%124% import java.util.Scanner; public class OutputFormatting { public static void main(String[] args){ Scanner scnr = new Scanner(System.in); double area; char seatChar; int amountChanged; area = scnr.nextDouble(); seatChar = scnr.next().charAt(0); amountChanged = scnr.nextInt(); /* 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 Programming Questions!