Advertisement
koksibg

Inches_to_Centimeters

Jan 25th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Inches_to_Centimeters
  4. {
  5.     class Inches_to_Centimeters
  6.     {
  7.         static void Main()
  8.         {
  9.             var a = double.Parse(Console.ReadLine());
  10.             Console.WriteLine(a * 2.54);
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement