nvnnaidenov

InchesToCentimeters - Chapter 2.0

Feb 9th, 2022
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. //Task 002, Chapter 2.0
  2. using System;
  3.  
  4. public class InchesToCentimeters
  5. {
  6.     static void Main()
  7.     {
  8.         double inches = double.Parse(Console.ReadLine());
  9.         double centimeters = inches * 2.54;
  10.  
  11.         Console.WriteLine(centimeters);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment