本文介绍了显影单位计算器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要为房地产网站开发单位计算器


如果用户进入该区域,则应从单位到单位进行选择,最后应显示结果



需要技巧和建议.

I need to develop the unit calculator for a property website


if user enters the area then from unit and to unit is selected finally result should be displayed



tips and sugessions are needed

推荐答案

double areaInSqMt = 10.0;
double cfSqMt2Sqft = 10.74; //cf = conversion factor
double areaInSqFt = areaInSqMt * cfSqMt2Sqft;
Console.WriteLine("{0} Square Meters is {1} Square Feet.", areaInSqMt, areaInSqFt);


顺便说一句,如果您甚至不了解基础知识,我想知道您是如何注册来开发房地产网站的.


Btw, if you do not even know the basics, I wonder how you signed up to develop a property website.


这篇关于显影单位计算器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 21:25