Advertisement
Kuncavia

DemoReadConsoleIchesToCm

Aug 14th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. using System;
  2.  
  3. class DemoReadConsole2
  4. {
  5.     static void Main()
  6.     {
  7.         //1. Get the inches
  8.         Console.WriteLine("Инчове към сантиметри:");
  9.         double inches = double.Parse(Console.ReadLine());
  10.         //2. Calculate
  11.         double centimeters = inches * 2.54;
  12.         //3. Print
  13.         Console.WriteLine("Сантиметри");
  14.         Console.WriteLine(centimeters);
  15.        
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement