填空题

函数Str$(256.36)的值是______。

【参考答案】

256.36
<上一题 目录 下一题>
热门 试题

填空题
新建一个工程,内有两个窗体,名称分别为Form1、Form2,窗体Form1上有一个命令按钮Command1,单击该按钮,Form1窗体消失,显示Form2窗体,程序如下,请填空。 Private Sub Command1_Click() Form1.Hide Form2.______ End Sub
单项选择题
单击命令按钮时,下列程序的执行结果是 Private Sub Command1_Click() Dima As Integer,b As Integer,c As Integer a=3:b=4:c=5 Print SecProc(c,b,a) End Sub Function FirProc(x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z+2 End Function Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y) +x+7 End Function A) 20 B) 25 C) 37 D) 32
单击命令按钮时,下列程序的执行结果是
Private Sub Command1_Click()
Dima As Integer,b As Integer,c As Integer
a=3:b=4:c=5
Print SecProc(c,b,a)
End Sub
Function FirProc(x As Integer,y As Integer,z As Integer)
FirProc=2*x+y+3*z+2
End Function
Function SecProc(x As Integer,y As Integer,z As Integer)
SecProc=FirProc(z,x,y) +x+7
End Function
A) 20 B) 25 C) 37 D) 32
相关试题
  • 已知数组A(4,4),各个元素在运行程序...
  • 下列程序计算Sn的值。Sn=a+aa+aaa+…+...
  • 组合框有3种不同的类型,这3种类型是下拉...
  • 有如下事件过程: Private Sub Form_Ac...
  • 下列程序段的执行结果为______。 Di...