对慢性充血性心力衰竭的患者,下列利尿药物中尽量避免使用的是:()
A.氢氯噻嗪
B.甘露醇
C.阿米洛利
D.依他尼酸
E.螺内酯
参考答案:B
合并多发伤不宜立即手术的肩胛骨骨折,宜在伤后进行手术的时限是()。
A.1~2周
B.2~3周
C.3~4周
D.1个月以内
E.3个月以内
设在工程文件中有一个标准模块,其中定义了下列记录类型: Type Books Name As String*10 TelNum As String*20 End Type 在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1 Click时,在顺序文件Person.txt中写入一条Books类型的记录。下列能够完成该操作的事件过程是( )
A.Private Sub Command1_Click()Dim B AS Books Open"Person txt" For Output As#1 B.Name=InputBox("输入姓名") B.TelNum=InputBox("输入电话号码") Write#1 B Narne,B TelNumClose#1End SubB.Private Sub Command1_Click()Dim B AS BooksOpen"Person txt"For Input As#1B.Name=InputBox("输入姓名")B.TelNum=InputBox("输入电话号码")Print#1,B.Name,B.TelNamClose#lEnd SubC.Private Sub Command1_Click()Dim BAS Books Open"Person txt"For Output As#1 B.Name=InputBox("输入姓名")B.TelNum=InputBox("输入电话号码") Write#1,B Close#1 End SubD.Private Sub Command1_Click()Open"Person txt"For Input As#1Name=InputBox("输入姓名")TelNum=InputBox("输入电话号码")Prim#1 Name TelNumClose#1End Sub