C# Program to Convert Centimeter to Feet and Inches – Programming, Pseudocode Example, C# Programming Example
Basic C# Console

C# Program to Convert Centimeter to Feet and Inches

1 inch is equal to 2.54 centimeter, so 1 centimeter is equal to 0.3937 inches

Therefore, n centimeters are equal to (n * 0.3937)inches

and

1 foot is equal to 30.48 centimeter, therefore, 1 centimeter is equal to 0.0328 feet.

Therefore, n centimeters are equal to (n * 0.0328)feet.

Code:

 

 

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.