• 2022-06-18
    以下程序段中,执行结果与其他3个选项不同的是
    A: Dim y As Integer
    B: y = 11
    C: Select Case y
    D: Case 15 To 5
    E: Print "Executed"
    F: End Select
    G: Dim y As Integer
    H: y = 10
    I: Select Case y
    J: Case Is > 10, Is < 10
    K: Print " Executed "
    L: End Select
    M: Dim y As Integer
    N: y = 10
    O: Select Case y
    P: Case Is > 15, 1, 5 To 8
    Q: Print " Executed "
    R: End Select
    S: Dim y As Integer
    T: y = 10
    U: Select Case y
    V: Case 1, 3, Is > 6
    W: Print " Executed "
    X: End Select
  • 举一反三