package week2; public class UnderstandingOperatorPrecedence { public static void main(String[] args) { // TODO Auto-generated method stub double paid = 9; double change = 3.5; double tip = (paid-change)*0.2; System.out.println("Your tip is " + tip); } }