Untitled
unknown
plain_text
2 years ago
241 B
5
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...