[单项选择题] 有如下语句: Type Student Name As String Age As Integer Sex As String End Type Dim Stu As Stude
16 查阅
[单项选择题] 有如下语句:
Type Student
Name As String
Age As Integer
Sex As String
End Type
Dim Stu As Student
With Stu
.Name="张红"
.Age=22
.Sex="女"
End With
执行Print Stu.Age语句后的结果是
A.张红
B.22
C.“女”
D.Age
参考答案: