第4题: [填空题]有如下用户定义类型及操作语句: Type Student SNo As String SName As String SAge As Integer End Type Dim Stu As Student With Stu .SNo="200609001" .SName="陈果果" .Age=19 End With 执行MsgBox Stu.Age后,消息框输出结果是______。 参考答案:S 答案解析:[解析] 本题主要考查了考生对VBA程序中记录类型和With语句的了解。 程序的前5行定义了一个记录类型Student,其中包含了三个成员SNo、SName和SAge。接下来使用Dim语句定