网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

设在工程中定义了如下类型: Type stutype ino As Integer stmame As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作( )。

A.Sub Command1_click() Dimstudent 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


参考答案

更多 “ 设在工程中定义了如下类型: Type stutype ino As Integer stmame As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作( )。A.Sub Command1_click() Dimstudent As Stutype With student .ino=12 .strname=smith .strsex=男 .smark=89 End With End SubB.Sub Command1_Click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With End SubC.Sub Command1_Click() Dim student As Stutype With Stutype .ino=12 .strname="smith" .strsex="男" .smark=89 End With End SubD.Sub Command1_click() Dim student As Stutype With student .ino=12 .strname="smith" .strsex="男" .smark=89 End student End Sub ” 相关考题
考题 符号%是声明______类型变量的类型定义符。A.IntegerB.VariantC.SingleD.String

考题 已知String类定义如下:class String{public:String(const char *str = NULL); // 通用构造函数String(const String another); // 拷贝构造函数~ String(); // 析构函数String perater =(const String rhs); // 赋值函数private:char *m_data; // 用于保存字符串};尝试写出类的成员函数实现。

考题 符号%是声明 ______ 类型变量的类型定义符。A.VafiantB.IntegerC.SingleD.String

考题 在以下各选项中,属于Visual Basic定义的基本数据类型的是() A、IntB、IntegerC、SingleD、String

考题 4、JDBC中,接口Statement中定义的execute方法的返回类型是()A.ResultSetB.IntC.BooleanD.String

考题 以下有关控制台说法正确的是()。A.定义入口方法正确写法:static void main(string[] args)B.定义入口方法正确写法:static void Main(string[] args)C.定义入口方法正确写法:static Void Main(string[] args)D.定义入口方法正确写法:Static Void Main(string[] args)

考题 定义名为“联系方式”的属性组,该属性组包含两个名称分别为“邮箱”和“电话”的属性,这两个属性的类型均为"string",下面正确的选项为()。A.<attributeGroup name="联系方式"> <attribute name="邮箱" type="xsd:string"/> <attribute name="电话" type=“xsd:string"/> </attributeGroup>B.<attributeGroup name="联系方式"> <attribute name="邮箱" type="xsd:sting"> <attribute name="电话" type=“xsd:sting"> </attributeGroup>C.<attribute name="联系方式"> <attribute name="邮箱" type="xsd:sting"/> <attribute name="电话" type=“xsd:sting"/> <

考题 在C++中不仅可以用string定义字符串变量,也可以用string定义字符串数组

考题 两个 string 对象能够相加的原因是A.string 类型与 int 类型相似,本质上可以执行加法运算B.string 类中重载了 + 运算符C.+ 运算符本身能够对字符进行运算D.C++ 标准中对 + 运算符做了特殊规定,所以可以对 string 对象执行相应操作

考题 1、两个 string 对象能够相加的原因是A.string 类型与 int 类型相似,本质上可以执行加法运算B.string 类中重载了 + 运算符C.+ 运算符本身能够对字符进行运算D.C++ 标准中对 + 运算符做了特殊规定,所以可以对 string 对象执行相应操作