• 2021-04-14
    如下程序执行后,应用程序界面显示的是:
    Dim a As Integer = 2
    Dim b As Integer = 3
    Dim c As Single = 2
    If a < b Then
    If a < c Then
    c = c - 1
    Else
    c = c + 1
    End If
    End If
    Label1.Text = c.ToString