public class Ex03Arithmetic //class and file have same name { public static void main(String[] args) { double regularWages; double basePay = 25; double regularHours = 40; double amount = 4 + 9.5; double temperature = 112 - 14; double points = 100/3.0; regularWages = basePay * regularHours; System.out.println("Wages for this week are $"+ regularWages); System.out.println("The amount is "+ amount); System.out.println("The temperature is "+ temperature); System.out.println("The points are "+ points); points = 100/3; System.out.println("The points are "+ points); } }