Programming Fundamentals/Variables/Java

variables.java edit

// This program converts a Fahrenheit temperature to Celsius.
//
// References:
//     https://www.mathsisfun.com/temperature-conversion.html
//     https://en.wikibooks.org/wiki/Java_Programming

import java.util.Scanner;

class variables {
    public static void main(String[] args) {
        double fahrenheit;
        double celsius;
        
        System.out.println("Enter Fahrenheit temperature:");
        Scanner scanner = new Scanner(System.in);
        fahrenheit = scanner.nextDouble();

        celsius = (fahrenheit - 32) * 5 / 9;

        System.out.println(fahrenheit + "° Fahrenheit is " + celsius + "° Celsius");
    }
}

Try It edit

Copy and paste the code above into one of the following free online development environments or use your own Java compiler / interpreter / IDE.

See Also edit