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