Advertisement
tsvetelinapasheva

TsvetelinaPasheva/FirstStepInCodingLab/04.InchesToCentimeters

Dec 1st, 2020 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _04.InchesToCentimeters
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.  
  10.            
  11.  
  12.             double number = double.Parse(Console.ReadLine());
  13.             Console.WriteLine(number * 2.54);
  14.  
  15.  
  16.  
  17.  
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement