Asked by P
                I'm a beginner to Java and I need to know how to do the following:
Write a program that will ask the user to enter the amount of a purchase. The program should then compute the state and county sales tax. Assume the state sales tax is 4 percent and the county sales tax is 2 percent. The program should display the amount of the purchase, the state sales tax, the county sales tax, the total sales tax, and the total of the sale (which is the sum of the amount of purchase plus the total sales tax). Hint: Use the value 0.02 to represent 2 percent, and 0.04 to represent 4 percent.
Can anybody help me?
            
            
        Write a program that will ask the user to enter the amount of a purchase. The program should then compute the state and county sales tax. Assume the state sales tax is 4 percent and the county sales tax is 2 percent. The program should display the amount of the purchase, the state sales tax, the county sales tax, the total sales tax, and the total of the sale (which is the sum of the amount of purchase plus the total sales tax). Hint: Use the value 0.02 to represent 2 percent, and 0.04 to represent 4 percent.
Can anybody help me?
Answers
                    Answered by
            MathMate
            
    Post either pseudocode, or actual coding, in whatever shape they are in.
If you do not know how to do either one of the two, post what you have learned, the name of your textbook, the chapters covered, and the course outline.
    
If you do not know how to do either one of the two, post what you have learned, the name of your textbook, the chapters covered, and the course outline.
                    Answered by
            dd
            
    // Create a Scanner object to read input.
Scanner keyboard = new Scanner(System.in);
// Get the Purchase Amount
System.out.print(" What is the Purchase Amount?");
purchaseAmount=keyboard.nextDouble( );
stateSalesTax=0.04*purchaseAmount;
countySalesTax=0.02*purchaseAmount;
totalSalesTax=stateSalesTax+countySalesTax;
totalSale=totalSalesTax+purchaseAmount;
System.out.println( " Purchase " + purchaseAmount);
System.out.println( " State Tax " + stateSalesTax);
System.out.println( " County Tax " + countySalesTax );
System.out.println( " Total Tax " + totalSalesTax +"\n_________");
System.out.println( " Total Sale " + totalSale);
}
}
    
Scanner keyboard = new Scanner(System.in);
// Get the Purchase Amount
System.out.print(" What is the Purchase Amount?");
purchaseAmount=keyboard.nextDouble( );
stateSalesTax=0.04*purchaseAmount;
countySalesTax=0.02*purchaseAmount;
totalSalesTax=stateSalesTax+countySalesTax;
totalSale=totalSalesTax+purchaseAmount;
System.out.println( " Purchase " + purchaseAmount);
System.out.println( " State Tax " + stateSalesTax);
System.out.println( " County Tax " + countySalesTax );
System.out.println( " Total Tax " + totalSalesTax +"\n_________");
System.out.println( " Total Sale " + totalSale);
}
}
                    Answered by
            Robert
            
     A customer is in a store to purchase 6 items.  Write a program which asks for the sales tax and the price of each item, then displays: 1.	the subtotal of the sale 2.	the total amount of tax to be collected 3.	the total amount the customer must pay
    
                                                    There are no AI answers yet. The ability to request AI answers is coming soon!
                                            
                Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.