Untitled

Anonymous
plain_text
03/03/2023 1:04 PM
332 B
24
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...