public static void Main()
Console.WriteLine("Program that converts inches to centimetres");
Console.WriteLine("Please give a number to convert");
inch = double.Parse(Console.ReadLine());
if ((inch > 0) || (inch ==0))
Console.WriteLine("The result is:" + result);
Console.WriteLine("An error has occured please try again");