• 2022-10-30 问题

    以下能正确定义数据类型TelBook的代码是: A: Type TelBook Dim Name As String * 10 Dim TelNum As IntegerEnd Type B: Type TelBook Name As String * 10 TelNum As IntegerEnd Type C: Type TelBook Name As String * 10 TelNum As IntegerEnd TelBook D: Type TelBook Name As String * 10 TelNum As IntegerEnd Type TelBook

    以下能正确定义数据类型TelBook的代码是: A: Type TelBook Dim Name As String * 10 Dim TelNum As IntegerEnd Type B: Type TelBook Name As String * 10 TelNum As IntegerEnd Type C: Type TelBook Name As String * 10 TelNum As IntegerEnd TelBook D: Type TelBook Name As String * 10 TelNum As IntegerEnd Type TelBook

  • 2022-10-30 问题

    以下能正确定义数据类型StuInfo的代码是( )。 A: Type StuInfo Xm As String*8 Xh As IntegerEnd Type StuInfo B: Type StuInfo Xm As String*8 Xh As IntegerType End C: Type StuInfo Xm As String*8 Xh As IntegerEnd Type D: Type StuInfo Xm String*8 Xh As IntegerEnd StuInfo

    以下能正确定义数据类型StuInfo的代码是( )。 A: Type StuInfo Xm As String*8 Xh As IntegerEnd Type StuInfo B: Type StuInfo Xm As String*8 Xh As IntegerType End C: Type StuInfo Xm As String*8 Xh As IntegerEnd Type D: Type StuInfo Xm String*8 Xh As IntegerEnd StuInfo

  • 2022-06-11 问题

    在窗体的通用声明段自定义了数据类型Students,下列_____定义方式是正确的。 A: TypeStudents Name String*10 Studno IntegerEnd Type B: Private Type Students Name AsString*10 Studno AsInteger End Type C: Type Students Name AsString*10 Studno AsIntegerEnd Students D: Type Students Name As String*10 Studno AsIntegerEnd Type

    在窗体的通用声明段自定义了数据类型Students,下列_____定义方式是正确的。 A: TypeStudents Name String*10 Studno IntegerEnd Type B: Private Type Students Name AsString*10 Studno AsInteger End Type C: Type Students Name AsString*10 Studno AsIntegerEnd Students D: Type Students Name As String*10 Studno AsIntegerEnd Type

  • 1