Advertisement
Guest User

InchToSantimeters

a guest
Apr 10th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FromInchToSantimeters
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.  
  10.             double inch = double.Parse(Console.ReadLine());
  11.             double santimeter = inch * 2.54;
  12.             Console.WriteLine(santimeter);
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement