济南有三大名胜,一是大明湖,二是趵突泉,请问三是什么?()
A、西湖
B、千佛山
C、三潭影月
D、九寨沟
参考答案:B
下列哪种情况不能出现血性痰().
A.肺癌
B.肺结核
C.支气管扩张
D.肺尘埃沉着病
E.肺梗死
下列程序的功能是求出所有的1-100之间的孪生素数。孪生素数是指两个素数的差为 2,如3和5,11和13等,请填空。 Private Sub Form_Click() Dim i As Integer For i = 3 To 97 Step 2If 【9】 Then Print i, i + 2End If Next i End Sub Public Funtion Prime (ByVal n As Integer) As Boolean Dim i as Integer For i = 2 To n - 1If 【10】 Then Exit ForEnd If Next i If i = n ThenPrime = True ElsePrime = False End If End Function