Restaurant Practice

Run Settings
LanguageJava
Language Version
Run Command
class Main { //creates a main class public static void main(String[] args) { // creates a main method (object) //cost to include: meal (9.99), drink(1.50) HST (13%) double meal = 9.99; double drink = 1.50; double HST = 1.13; //calculate the total cost //subtotal???? add the tax double subtotal = meal + drink; double total = subtotal * HST; //output System.out.println(total); } }
Editor Settings
Theme
Key bindings
Full width
Lines