Untitled
unknown
plain_text
3 years ago
249 B
11
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...