Question: Intro to JAVA please see below thanks! Complete this program to print a table of prices. The first column has width 8 and the second

Intro to JAVA please see below thanks!

Complete this program to print a table of prices. The first column has width 8 and the second column has width 10. Print the prices with two digits after the decimal point.

CODE:

import java.util.Scanner;

public class Table { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("Unit price: "); double price = in.nextDouble();

System.out.println("Quantity Price"); int quantity = 1; System.out.printf("...", quantity, quantity * price); quantity = 12; System.out.printf("...", quantity, quantity * price); quantity = 100; System.out.printf("...", quantity, quantity * price); } }

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 Databases Questions!