-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAcitivity02.java
22 lines (21 loc) · 1016 Bytes
/
Acitivity02.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.Scanner;
public class Acitivity02
{
public static void main(String[] hassan)
{
final double pricePizza = 12.00;
final double priceToppings = 1.50;
final double taxRate = 0.05;
Scanner sc = new Scanner(System.in);
System.out.print("Enter the number of pizzas: ");
int Pizza = sc.nextInt();
System.out.print("Enter the total number of toppings: ");
int Toppings = sc.nextInt();
double total = Pizza * pricePizza; // calculating price of pizza
double totalTop = Toppings * priceToppings;//calculating price of toppings
double price = total + totalTop; //total price of pizza with toppings
double tax = price * taxRate; // calculating tax
double totalprice = tax + price ; //total price including tax
System.out.println("\nReceipt: Number of Pizzas: "+Pizza+ "\nNumber of Toppings: "+Toppings+ "\nCost (incl tax): "+totalprice);
}//main
}//class