VB编程实现华氏温度和摄氏温度之间的转变

日期:2017-12-16 13:23:54 人气:1

VB编程实现华氏温度和摄氏温度之间的转变

1.不明白你是什么意思 2.逆序输出 Private Sub Text1_Change() Text2 = Right(Text1, 1) & Left(Text1, 1) End Sub 3.华氏转摄氏 Private Sub Text1_Change() If Text1.Text "" Then Text2.Text = Round((Text1.Text - 32) * 5 / 9, 1) Else Text2.Text = Round(-32 * 5 &#
    A+
热门评论