若a>0,b>0,且函数f(x)=4x3﹣ax2﹣2bx+2在x=1处有极值,则ab的最大值等于( ).
9
暂时不能脱险应怎样保护自己?
设在工程中有一个标准模块,其中定义了如下记录类型: Type Books Name As String (10 TelNum As String *20 End Type 在窗体上添加一个名为Command1的命名按钮,要求当执行事件过程Command1 Click时,在顺序文件Person.txt中写入一条记录。请在横线中填入适当的内容,将程序补充完整。 Private Sub Command1_Click() Dim B As ______ Open."c:\Person.txt" For Output As #1 B.Name=InputBox(“输入姓名”) B.TelNum=InputBox(“输入学号”) Write#1, B.Name, B.TelNum Close #1 End Sub