1. 首页
  2. 课程学习
  3. 讲义
  4. VB简易计算器

VB简易计算器

上传者: 2019-01-07 08:05:41上传 RAR文件 3.36KB 热度 29次
Private Sub Command4_Click() Text1.Text = Text1.Text + "." If (InStr(Text1.Text, ".") = 1) Then Text1.Text = "" End If If InStr(Text1.Text, ".") < Len(Text1.Text) Then Text1.Text = Left(Text1.Text, Len(Text1.Text) - 1) End If End Sub
用户评论