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) //DECLARE ALL VARIABLES double meal = 9.99; double drink = 1.50; double HST = 1.13; //CALCULATE THE TOTAL COST WITH TAX double subtotal = meal + drink; double total = subtotal * HST; //OUTPUT THE TOTAL COST System.out.println(total); } }
Editor Settings
Theme
Key bindings
Full width
Lines