public class ShowLogicErrors { public static void main(String[] args) { // TODO Auto-generated method stub System.out.print("Celsius 35 is "); System.out.print("Fahrenheit "); System.out.println((9 / 5) * 35 + 32); /* System.out.print("OR: Celsius 35 is "); System.out.print("Fahrenheit "); System.out.println((9.0 / 5) * 35 + 32); */ } }