Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- import java.util.Scanner;
- public class InchesToCentimeters {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- double inch = Double.parseDouble(scanner.nextLine());
- double cm = inch * 2.54;
- System.out.println(cm);
- }
- }
Add Comment
Please, Sign In to add comment