Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- Console.Write("inches = ");
- var inches = double.Parse(Console.ReadLine());
- Console.WriteLine("centimeters = {0}", inches * 2.54);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement