public class FtoC { public static void main(String[] args) { double F = 70.0; double C; // 70 F ==> 21.11 C C = 5 / 9 * (F - 32 ); // Fix it } }