显影单位计算器 [英] Developing unit calculator reg

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

问题描述

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


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



需要技巧和建议.

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

推荐答案

我看不到这里需要进行任何火箭科学编程.它只需要基本的算术知识.您只需要知道转换因子.从以下示例中获取线索:
I don''t see the need for any rocket science programming here. It just requires knowledge of basic arithmetic. You just need to know the conversion factors. Take clue from this example:
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.


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

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆