veronikaaa86

04. Inches to Centimeters

May 13th, 2023
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class InchesToCentimeters {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.  
  9.         double inch = Double.parseDouble(scanner.nextLine());
  10.  
  11.         double cm = inch * 2.54;
  12.  
  13.         System.out.println(cm);
  14.     }
  15. }
  16.  
Add Comment
Please, Sign In to add comment