Advertisement
myrdok123

04. Inches to Centimeters

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