4.8k views
5 votes
Write a Java program that takes the price of a restaurant meal, and a tip percentage. (ex. 15 or 20%) The program should create receipt for the customer of the charges including the meal price (based on user input), tip amount (based on user input), tax amount (based on tax rate is 7.5%) and total payment due.

User Ryan Gavin
by
8.1k points

1 Answer

5 votes

Final answer:

To calculate the total payment due for a restaurant meal including tip and tax, you can use a Java program that takes the meal price and tip percentage as user input, calculates the tip amount based on the percentage, calculates the tax amount based on a predefined tax rate of 7.5%, and then calculates the total payment due by summing the meal price, tip amount, and tax amount.

Step-by-step explanation:

To calculate the total payment due for a restaurant meal including tip and tax, you can use the following Java program:

import java.util.Scanner;

public class RestaurantReceipt {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

System.out.print("Enter the price of the meal: ");
double mealPrice = scanner.nextDouble();

System.out.print("Enter the tip percentage: ");
double tipPercentage = scanner.nextDouble();

double taxRate = 0.075;

double tipAmount = mealPrice * (tipPercentage / 100);
double taxAmount = mealPrice * taxRate;
double totalPaymentDue = mealPrice + tipAmount + taxAmount;

System.out.println("------------------------");
System.out.println("Receipt");
System.out.println("------------------------");
System.out.println("Meal Price: $" + mealPrice);
System.out.println("Tip Amount: $" + tipAmount);
System.out.println("Tax Amount: $" + taxAmount);
System.out.println("------------------------");
System.out.println("Total Payment Due: $" + totalPaymentDue);
}
}

User Amgad
by
7.1k points