当前位置: 答题翼 > 问答 > 计算机类考试 > 正文
目录: 标题| 题干| 答案| 搜索| 相关
问题

设在工程中定义了下列类型: Type Stutype ino As Integer strname As String*20 Strsex As Strin


设在工程中定义了下列类型: Type Stutype ino As Integer strname As String*20 Strsex As String*1 Smark As Single End Type在窗体上正确使用这个类型的是下列哪个操作 A. Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname=smith .strsex=男 .smark=89 End With End Sub B. Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub C. Sub Command1_Click() Dim student As Stutype With Stutype .ino=12 .strname="smith" .strsex="男" .smark=89 End With End Sub D. Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End student End Sub

参考答案
您可能感兴趣的试题
  • 若有结构体定义: struct stu {int num; char sex; int age; }a1,a2; 则下列语句中错误的是()。A.p

  • ● 在WEB 服务描述语言文档中使用的元素Port Type的含义是 (66) 。 (66)A.数据类型定义的容器,它使

  • (28 )若在窗体模块的声明部分声明了如下自定义类型和数组Private Type recCode As IntegerCapti

  • 如下程序段定义了学生成绩的记录类型,由学号,姓名和三门课程成绩百分制.组成。 Type Stud no As

  • 有以下说明和定义语句struct student{ int age; char num[8];};struct student stu[3]={{20,"200" />