const double humanHeightCm = 170;
const double legoFigureHeightCm = 4;
const double realWorldFootCm = 30.48;
double ratio = legoFigureHeightCm / humanHeightCm;
double legoFootProportionalCm = realWorldFootCm * ratio;
double humanHeightInProportionalLegoFeet = humanHeightCm / legoFootProportionalCm;
Console.WriteLine("A normal human would appear to be approximately " +
humanHeightInProportionalLegoFeet.ToString("F2") +
" proportional Lego feet tall to a Lego person.");