Untitled
unknown
plain_text
2 years ago
249 B
6
Indexable
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double pounds = Double.parseDouble(scanner.nextLine()); System.out.printf("%.2f", pounds * 0.45359237); } }
Editor is loading...