有如下语句:
Type Student
Name As String
Age As Integer
Sex
分类: 19信息竞赛自组题02发布时间: 2023-12-01 12:13浏览量: 2
有如下语句:
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后的结果是( )。