填空题
一元二次方程ax
2
+bx+c=0有实根的条件是a≠0,并且b
2
-4ac≥O,表示该条件的布尔表达式是______。
【参考答案】
a<>0 And B*B-4*a*c>=0
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
如果存在如下过程: Private Function FMax(a()As Integer) Dim First As Integer,Last As Integer,i As Integer First=LBound(a) Last=UBound(a) Max=a(First) Fori=FirSt To Last Ifa(i)>Max ThenMax=a(i) Nexti FMax=Max End Function 在窗体上添加一个命令按钮,然后编写如下事件过程: Ptirate Sub Commandl_click() ReDimm(1 To4)As Integer m(1)=20:m(2)=30:m(3)=50:m(4)=100 C=FMax(m) Print C End Sub 单击命令按钮,其输出结果为______。
点击查看答案
填空题
(-1)*Sgn(-100+Int(Rnd*100))的值是______。
点击查看答案
相关试题
下列程序的执行结果是上______。 t...