foot in cm csharp

Code Example - foot in cm csharp

                
                        public static void Main()
        {
            Console.Write("Enter centimeter:");
            int centimeter = Convert.ToInt32(Console.ReadLine());
            double inch = 0.3937 * centimeter;
            double feet = 0.0328 * centimeter;
            Console.WriteLine("Inches is: " + inch);
            Console.WriteLine("Feet is: " + feet);
            Console.ReadLine();
        }