填空题
随机文件使用Put语句写数据,使用【 】语句读数据。
【参考答案】
Get
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
单击命令按钮时,下列程序代码的运行结果为( )。Private Sub Command1_Click()print MyFunc(20,18)End SubPublic Function MyFunc (m As Integer,n As Integer)As IntegerDo While m <>nDo While m > n:m=m - n:LoopDo While m < n:n=n - m:LoopLoopMyFunc=mEnd FunCtion
A.0
B.2
C.4
D.6
点击查看答案&解析
单项选择题
单击命令按钮时,下列程序的执行结果为( )。Private Sub Command1_Click()Dim a As Integer,b As Integer,c As Integera=2:b=3:C=4 Print P2(c,b,A) End SubPrivate Function P1(x As Integer,y As Integer,z As Integer)P1=2 * X + y + 3 * zEnd FunctionPrivate Function P2(x As Integer,y As Integer,z As Integer)P2=P1(z,x,y) + XEnd Function
A.21
B.19
C.17
D.34
点击查看答案&解析
相关试题
下面程序是用来打印九九乘法表的,请补充完...
设有下列循环:x=1Dox=x+2Print xLoo...
在窗体上画两个组合框,其名称分别为Combo...
下面的程序用于根据文本框Test中输入的内容...
在KeyPress事件过程中,KeyAscii是所按键的...