Untitled
unknown
plain_text
3 years ago
258 B
9
Indexable
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
double fahrenheits = Double.parseDouble(scanner.nextLine());
System.out.printf("%.2f", (fahrenheits - 32) /1.8);
}
}
Editor is loading...