/***************************************************************** * Program 2: TotalCost * Programmer: Insert your name here * * Due Date: * Class: COMP 110_01 Instructor: Tabitha Peck * * Pledge: I have neither given nor received unauthorized aid * on this program. (signature on file) * * Description: Insert the program descritption * * Input: what is the input * * Output: what is the output * ******************************************************************/ import java.util.*; public class TotalCost { public static void main(String[] args) { double coat; System.out.println("What is the cost of the coat you want to buy?"); Scanner keyboard = new Scanner(System.in); coat = keyboard.nextDouble(); System.out.println("What is the tax rate?"); System.out.println("The total cost of your coat is"); } }