1.单选题- (共2题)
2.选择题- (共4题)
请根据算法将下列程序补充完整。
Function prime(a As Integer) As Boolean
Dim j As Integer
prime = True
j = 2
Do While prime And j <= a \ 2
If a Mod j = 0 Then
prime = False
Exit Do
End If
{#blank#}1{#/blank#}
Loop
End Function
Private Sub Command1_Click( )
Dim i As Integer, a As Integer, b As Integer
Dim count As Integer
a = Val(Text1.Text)
b = Val(Text2.Text)
For i = a To b
If {#blank#}2{#/blank#} = True Then
List1.AddItem Str(i)
count = count + 1
End If
Next i
Label1.Caption = "素数共有" + Str(count) + "个!"
End Sub
3.填空题- (共2题)
4.解答题- (共4题)



(1)求直线l对应的函数表达式及反比例函数G1的表达式;
(2)反比例函数G2::

①若点E在第一象限内,且在反比例函数G2的图象上,若EA=EB,且△AEB的面积为8,求点E的坐标及t值;
②反比例函数G2的图象与直线l有两个公共点M,N(点M在点N的左侧),若


-
【1】题量占比
单选题:(2道)
选择题:(4道)
填空题:(2道)
解答题:(4道)
-
【2】:难度分析
1星难题:0
2星难题:0
3星难题:0
4星难题:1
5星难题:0
6星难题:2
7星难题:0
8星难题:1
9星难题:4