第6题: [单项选择]Passage Three Questions 33 to 35 are based on the passage you have just heard.A. To compare two business models. B. To introduce a new business model. C. To advocate sustainable development. D. To predict a change of the global market. 参考答案:C 答案解析:[解析] What is the main purpose of the passage
第29题: [填空题]下列程序的功能是:将数据1,2,…,8写入顺序文件Num.txt中,请补充完整。
Private Sub Form_Click( )
Dim i As Integer
Open"Num.txt"For Output As #1
For i=1 To 8
【 】
Next i
Close #1
End Sub
参考答案:Print #1,i 答案解析:向文件中写入数据用Print语句。