Write an app that performs temperature conversions. The app should perform two types of conversions:

1. Degrees Fahrenheit to Degrees Celsius
2. Degrees Celsius to Degrees Fahrenheit

To convert Degrees Fahrenheit to Degrees Celsius, use this formula:

Celsius = \(\frac{5}{9}\) \((\text{Fahrenheit} - 32)\)

Answer :

Final answer:

To convert from Fahrenheit to Celsius, subtract 32 from the Fahrenheit temperature and divide by 1.8. For 88°F, the equivalent in Celsius is approximately 31.11°C. The Celsius scale is called centigrade because it divides the interval between the freezing and boiling points of water into 100 degrees.

Explanation:

To convert the temperature in degrees Fahrenheit to degrees Celsius, you can use the formula: Celsius (°C) = (Fahrenheit (°F) - 32) / 1.8. When the temperature is a warm 88°F, applying this formula would be:

Celsius = (88 - 32) / 1.8

Celsius = 56 / 1.8

Celsius = 31.11°C

So, on a warm day when the temperature is 88°F outside, the temperature in Celsius would be approximately 31.11°C. The Celsius scale is sometimes called centigrade because it is based on the interval of 100 degrees between the freezing and boiling points of water, where 0°C is the freezing point and 100°C is the boiling point of water at 1 atmosphere of pressure. This means each degree on the Celsius scale is a centi-grade or “one hundredth” of that interval.

Answer:

Sure, here's an example of a temperature converter app that performs conversions between Fahrenheit and Celsius:

```

import java.util.Scanner;

public class TemperatureConverter {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.println("Temperature Converter");

System.out.println("1. Fahrenheit to Celsius");

System.out.println("2. Celsius to Fahrenheit");

System.out.print("Enter your choice (1 or 2): ");

int choice = scanner.nextInt();

System.out.print("Enter temperature: ");

double temperature = scanner.nextDouble();

if (choice == 1) {

double celsius = (5.0 / 9.0) * (temperature - 32.0);

System.out.println(temperature + "F = " + celsius + "C");

} else if(choice == 2) {

double fahrenheit = (9.0 / 5.0) * temperature + 32.0;

System.out.println(temperature + "C = " + fahrenheit + "F");

} else {

System.out.println("Invalid choice!");

}

}

}

```

This app first displays a menu with two options for converting Celsius to Fahrenheit or Fahrenheit to Celsius. The user is then prompted to enter their choice and the temperature to be converted. The formulas for converting Fahrenheit to Celsius and Celsius to Fahrenheit are applied depending on the user's choice and the result is displayed to the user.