TEXT A The war was the most peaceful period of my life. The window of my bedroom faced south-east. I always woke up with the first light and, with all the responsibilities of the previous day melted, felt myself rather like the sun, ready to shine and feel joy. Life never seemed so simple and clear and full of possibilities as then. I stuck my feet out under the sheets--I called them Mrs. Left and Mrs. Right--and invented dramatic situations for them in which they discussed the problems of the day. At least Mrs. Right did; she easily showed her feelings, but I didn’t have the same control of Mrs. Left, so she mostly contented herself with nodding agreement. They discussed what Mother and I should do during the day, what Santa Claus should give a fellow for Christmas, and what steps should be taken to brighten the home. There was that little matter of the baby, for instance. Mother and I could never agree about that. Ours was the only house in the neighborhood without a new baby, and Mother said we couldn’t afford one till Father came back from the war because it cost seventeen and six. That showed how foolish she was. The Geneys up the road had a baby, and everyone knew they couldn’t afford seventeen and six. It was probably a cheap baby, and Mother wanted something really good, but I felt she was too hard to please. The Geneys’ baby would have done us fine. Having settled my plans for ’the day, I got up, put a chair under my window, and lifted the frame high enough to stick out my head. The window overlooked the front gardens of the homes behind ours, and beyond these it looked over a deep valley to the tall, red-brick house up the opposite hillside, which were all still shadow, while those on our side of the valley were all lit up, though with long storage shadows that made them seem unfamiliar, stiff and painted. The boy usually felt ________ early in the morning.
A. frightened
B. cheerful
C. worded
D. puzzled
完成下列问题: 考生文件夹下有一个工程文件sjt4.vbp,其中的窗体上已有如图4所示的控件。程序功能如下: [*] ①单击“读数据”按钮,则将考生文件夹下in4.dat文件内容(该文件中仅含有字母和空格)显示在Text1文本框中。 ②在Text1中选中部分文本,并单击“统计”按钮,则以不区分大小写字母的方式,自动统计选中文本中同时出现“o”、“n”两个字母单词的个数(如:million、company都属于满足条件的单词),并将统计结果显示在Text2文本框内。 在横线处填写正确的内容,以实现上述程序功能。 注意:考生不得修改窗体文件中已经存在的控件和程序,最后将程序按原文件名存盘。 [题目提供的源程序] Dim s As String Private Sub Command1_Click() Open App.Patb & "\in4.dat" For Input As #1 s=Input(LOF(1),#1) Close #1 Text1.Text=s End Sub Private Sub Command2_Click() Dim m As Integer If Len(s)= (1) Then MsgBox "请先使用"读数据"功能!" Else If Text1. (2) =0 Then MsgBox "请先选中文本!" Else t="" For i=1 To Text1.SelLength c=Mid(Text1.SelText,i,1) If c<>"" Then t=t+c Else x= (3) If InStr(x, "o") <> 0 And InStr(x, "n") <> 0 Then m=m+1 End If t="" End If Next i (4) =Str(m) End If End If End Sub