本文介绍了计算高度到毫米的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
必须取一个人的高度并将其计算为毫米我该怎么做?!
have to take the height of a person and calculate it into millimeters how do i go about doing that?!
推荐答案
不使用msgbox。
without using a msgbox.
你的意思是身高是多少?
以及1英尺= 304.8毫米
如果你不想要一个msgbox,可以说你有2个txt框和一个命令按钮,应该这样说:
textbox2.text = textbox1.text * 304.8
HTH
do you mean the height in feet??
well since 1 feet = 304.8 mm
if you dont want a msgbox, lets say you have 2 txt boxes and a commandbutton that should say something like this:
textbox2.text= textbox1.text * 304.8
HTH
在控制台应用程序中执行代码
doing the code in a console application
这篇关于计算高度到毫米的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!