Untitled
unknown
plain_text
2 years ago
258 B
4
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...