Function hw(m As Long) As Boolean Dim a As Integer,b As Inte

Function hw(m As Long) As Boolean Dim a As Integer,b As Integer,c As Integer,d As Integer a = Le
Function hw(m As Long) As Boolean
Dim a As Integer,b As Integer,c As Integer,d As Integer
a = Left(m,1):b = Mid(m,2,1)
c = _____________________
d = _____________________
hw = IIf(a = d And b = c,True,False)
End Function
Function ss(m As Long) As Boolean
Dim k As Long,i As Long,f As Boolean
f=True
k = Sqr(m)
For i = 2 To k
If _____________________ Then
f = False
Exit For
End If
Next i
________________
End Function
Private Sub Command1_Click()
Dim m As Long,n As Integer
For m = 10000 To 99999
If _____________________________ Then
Print Tab((n Mod 10) * 8 + 1); m;
n = n + 1
End If
Next m
End Sub
Mid(m,4,1) Right(m,1) 注意:只要能取出第四、五位即可得分
m mod i=0(只要能判断整除即可)
ss=f ss(m) hw(m)(只写ss及hw不得分,如果写了True但写错了扣1分)
luzhaoming 1年前 已收到1个回答 举报

芒果上的蛋糕 幼苗

共回答了31个问题采纳率:83.9% 举报

Function hw(m As Long) As Boolean Dim a As Integer, b As Integer, c As Integer, d As Integer a = Left(m, 1): b = Mid(m, 2, 1) c = Mid(m, 4, 1) d = Right(m, 1) hw = IIf(a = d And b = c, ...

1年前

1
可能相似的问题
Copyright © 2024 YULUCN.COM - 雨露学习互助 - 16 q. 0.033 s. - webmaster@yulucn.com