Advertisement
IvanITD

04.InchesToCentimeters

Jan 14th, 2024
409
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.11 KB | Source Code | 0 0
  1. double inch = double.Parse(Console.ReadLine());
  2.  
  3. double result = inch * 2.54;
  4.  
  5. Console.WriteLine(result);
Tags: C#
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement