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