Its a compiler error
System.out.println("Mug $5.00 ");
System.out.println("How many T-shirts do you want?");
String numberShirts = input.nextLine();
System.out.println("How many hats?");
String numberhats = input.nextLine();
System.out.println("How many mugs?");
String numbermugs = input.nextLine();
double tshirtTotal = Shirtprice * numberShirts;
double chipsTotal = Hatprice * numberhats;
double cokeTotal = Mugprice * numbermugs;