更多"假定定义了一个记录类型,名为Rt,同时建立了一个名为Sp.txt的文件"的相关试题:
[填空题]假定定义了一个记录类型,名为Rt,同时建立了一个名为Fr.txt的文件,然后编写如下程序段:
Dim Rv As Rt
r1=Len(Rv)
Open "Fr.txt" For Random As #1
x=LOF(1)
n=x/r1
执行上面的程序段后,变量n中存放的是文件中包含的______条数。
[填空题]假定定义了一个记录类型,名为Rt,同时建立了一个名为Sp.txt的文件,然后编写如下的程序段:
Dim Rv As Rt
r1=Len(Rv)
Open"Sp.txt" For Random As # 1
x=LOF(1)
n=x/r1
执行上面的程序段后,变量n中存放的是文件 【6】 中所存放的是 【7】 记录类型的记录数。
[单项选择]假定定义了一个记录类型,名为Rt,同时建立了一个名为Fr.txt的文件,然后执行下面的程序段后,变量n中存放的是____。
Private Sub Command1_Click( )
Dim Rv As Rt
R1= Len(Rv)
Open"Fr.txt"For Random A.s #1
X= LOF(1)
n =X/RL
Close #1
End Sub
A. 文件中的记录数
B. 文件字节数
C. 文件行数
D. 文件字符数
[填空题]假定在工程文件中有一个标准模块,其中定义了如下记录类型
Type Books
Name As String * 10
TelNum As String * 20
End Type
要求在执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条记录。将经下程序补充完整。
Private Sub Command1_Clickk( )
Dim B As Books
open "c: /person. txt" For output As #1
B. Name = InputBox ("请输入姓名t" )
B. TelNum = InputBox("请输入电话号码" )
write #1, 【15】
close #1
End Sub
[填空题]假定在工程文件中有一个标准模块,其中定义了如下记录类型
Type Books
Name As String * 10
TelNum As String * 20
End Type
要求在执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条记录。将经下程序补充完整。
Private Sub Command1_Clickk( )
Dim B As Books
open "c: /person. txt" For output As #1
B. Name = InputBox ("请输入姓名t" )
B. TelNum = InputBox("请输入电话号码" )
write #1, 【15】
close #1
End Sub
[填空题]假定在工程文件中有一个标准模块,其中定义了如下记录类型。
Private Type Books
Name As String*10
TelNum As String#20
End Type
要求在执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条记录。将以下程序补充完整。
Private Sub Command1_Click( )
DimB As Books
open“C/person.txt”For output As#1
B.Name=InputBox(“请输入姓名”)
B.TeINum=InputBox(“请输入电话号码”)
write#1, (9)
close#1
End Sub
[填空题]假定在工程文件中有一个标准模块,其中定义了如下记录类型:
Type Books
Name As String*10
TelNum As String*20
End Type
要求在执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条记录。将以下程序补充完整。
Private Sub Command1_Click( )
Dim B As Books
open "c:/person.txt"For output As#1
B.Name=InputBox(“请输入姓名”)
B.TeINum=InputBoxt“请输入电话号码“)
write#1, (13)
close#1
End Sub
[填空题]假定用户没有给一个名为AB的类定义构造函数,则系统为其隐含定义的构造函数为 【17】 。
[填空题]假定用户没有给一个名字为Sample的类定义构造函数,则系统为其隐含定义的构造函数为 【8】 。
[填空题]假定在工程文件中有一个标准模块,其中定义了如下记录类型:Type Books
Name As String *10
TelNum As String*20
End Type
要求在执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条记录。将以下程序补充完整。
Private Sub Command1_Click( )
Dim B As Books
open "C=/person.txt" For output As#1
B.Name=InputBox("请输入姓名")
B.TelNum=InputBox("请输入电话号码")
write #1,______
Close #1
End Sub
[填空题]假定在工程文件中有一个标准模块,其中定义了如下记录类型:Type Books
Name As String *10
TelNum As String*20
End Type
要求在执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条记录。将以下程序补充完整。
Private Sub Command1_Click( )
Dim B As Books
open "C=/person.txt" For output As#1
B.Name=InputBox("请输入姓名")
B.TelNum=InputBox("请输入电话号码")
write #1,______
Close #1
End Sub
[填空题]假定用户没有给一个名字为Sampie的类定义构造函数,则系统为其隐含定义的构造函数为______。