// 섭씨를 화씨로 변환 (0˚C 9/5) +32 = 32˚F double celsius = 11.7; double fahrenheit = (celsius 9/5) + 32; // 화씨
System.out.println("섭씨 %.1f" + celsius + "는 화씨 %.1f " + fahrenheit + "이다.");