ANSWERS FOR Debugger EXAMPLES * WagesInMonth Corrections 1. The variable paymentForMonth should not be declared. 2. hours = Integer.parseInt(st.nextToken()); should be hours = Double.parseDouble(st.nextToken()); 3. if (hours <= 40) should be if (hours > 40) 4. totalForMonth = 40 * hourlyWage + 1.5 * hourlyWage * hours - 40; should be totalForMonth += 40 * hourlyWage + 1.5 * hourlyWage * (hours - 40); 5. System.out.println("/n/nTotal for month: " + paymentForMonth); should be System.out.println("\n\nTotal for month: " + totalForMonth); * MetricConverter Corrections 1. public English(int y, int i, int f, int n, int d) should be public English(int y, int f, int i, int n, int d) 2. yardsDouble = 1.0936133; should be yardsDouble = 1.0936133 * meters; 3. return (yards + feet / 3.0 + (inches + numerator / denominator) / 36.0) * 1.0936133; should be return (yards + feet / 3.0 + (inches + numerator / denominator) / 36.0) / 1.0936133;