问题 阅读理解

I’m Bruce Green. My dad is tall and has short gray hair now. But I see an old photo of him. In the photo, he’s 15 years old. He’s short. He has long yellow hair. He is in blue jeans(牛仔裤) and a T-shirt. He looks cool.

Now I’m 15 years old. I’m not tall and not short. My hair is short. It isn’t yellow, it’s brown. I don’t like blue jeans. I like big pants and long T-shirts.

根据短文内容,判断正(T)误(F)。

小题1:Bruce’s dad is short and has gray hair now.

小题2:Bruce’s dad has long yellow hair in the old photo.

小题3:Now Bruce’s hair is yellow, too.

小题4:Bruce likes big pants and long T-shirt.

小题5:Bruce and his dad are in the old photo.

答案

小题1:F

小题2:T

小题3:F

小题4:T

小题5:F

题目分析:短文大意:Bruce Green的爸爸个高,花白头发。Bruce Green见过他爸爸的一张旧照片。那照片中的爸爸只有15岁,个矮,留着长长的黄发,穿着蓝色的牛仔裤和T恤,看上去很酷。现在的Bruce Green也是15岁,中等个,留着棕色的短发,不喜欢蓝色的牛仔裤而喜欢大裤子和长T恤。

小题1:细节理解题。由第一段第二句话My dad is tall and has short gray hair now(我爸爸个高,短头发花白啦)知填F。

小题2:细节理解题。由第一段中In the photo, … He has long yellow hair.(在照片里,他留着长长的黄发)知填T。

小题3:细节理解题。由第二段中My hair is short. It isn’t yellow, it’s brown.(我的头发短,它不是黄的,而是棕色的)知填F。

小题4:细节理解题。由第二段最后一句I like big pants and long T-shirts.(我喜欢大裤子,长T恤)知填T。

小题5:推理判断题。由第一段中I see an old photo of him. In the photo, he’s 15 years old.(我看见了他的一幅旧照片,在照片中,他是15岁)可推知填F。

判断题
问答题

【说明】
本应用程序的运行窗口如图2所示。


窗口中的3个文本框和两个按钮名称分别为Txt_salary、Txt_base、Txt_tax、Cmd_compute和Cmd_quit。运行时,文本框Txt_base存放的是免税金额基数(应扣除的基本费用co)当用户在文本框Txt_salary中输入月收入(工资或薪金)并单击“计算”按钮Cmd_compute后,Txt_tax框中就显示计算所得的应纳税额。文本框Txt_base和Txt_tax在运行时不接受用户输入,Txt_base的内容以灰色显示。
个人工资(或薪金)所得税是按照超额累进的税率来征收的,方法是:以每月收入总额减去免税金额基数后的余额作为该月的月应纳税所得额,再将应纳税所得额按相应级数采用相应的税率进行累进计算。目前的免税金额基数为800元,税率如表1所示。

级数 月应纳税所得额 适用税率(%)
1
2
3
4
5
6
7
8
9
不超过500元的部分
501元~2000元的部分
2001元~5000元的部分
5001元~20000元的部分
20001元~40000元的部分
40001元~60000元的部分
60001元~80000元的部分
80001元~100000元的部分
超过100000元的部分
5
10
15
20
25
30
35
40
45
设一个人的月应纳税所得额为K(元),用下面的公式计算其应缴纳的个人所得税额S (元);
若0<K≤500,则S=K×5%;
若500<K≤2000,则S=500×5%+(K-500)×10%;
若2000<K≤5000,则S=500×5%+1500×10%+(K-2000)×15%;
若5000<K≤20000,则S=500×5%+1500×10%+3000×15%+(K-5000)×20%;
例如,某人某月工资总额为4100元,减去800元后,应纳税所得额为3300元,其应缴纳的个人所得税额为500*5%+1500*10%+1300*15%=370元。
在开发过程中,需要编写的程序代码如下;
【程序】
Option Base 0
Private Sub Cmd_compute_Click( )
Dim paylevel,taxPrate
paylevel = Array(0,500,2000,5000,20000,40000,60000,80000,100000, _1000001)
taxPrate = Array (5,10,15,20,25,30,35,40,45)
K= (1)
S=0
If(K>0) Then
For j = 1 To 9
If (2) Then
S = S + (paylevel(j) - paylevel(j -1) ) * taxPrate(j - 1)/100
Else
S=S+ (3) *taxPrate(j-1)/100
Exit For
End If
Next j
Ent If
(4) =Str $(S)
End Sub
Private Sub Cmd_quit_Click( )
End
End Sub
Private Sub Form_Load()
Txt_tax. Text =" "
Txt_salaw. Text =" "
Txt_base. Text = 800
Txt_tax. Locked = True
Txt_base. Enabled = (5)
End Sub