28,406
社区成员
发帖
与我相关
我的任务
分享
<%
a = "192,212,308,312,307,207,209,206,211,193,243,310,311,309,313,314,196,371,210,208,198,339,194,214,195,342,341,340,244,245"
b = "192,212,308,312,207,209,206,211,193,243,310,311,309,314,196,371,210,208,198,339,194,214,195,342,341,340,244,245"
stra = split(a,",")
strb = split(b,",")
numa = len(a) - len(replace(a,",",""))
numb = len(b) - len(replace(b,",",""))
response.write "<br>=============所有数字都是三位数==============<br>"
for i = 0 to numa
if not (instr(b,stra(i)) > 0) then
response.write "<br>[<font color='#ff0000'>"&stra(i)&"</font>]"
end if
next
response.write "<br>============位数不确定===============<br>"
for i = 0 to numa
checkallnum = false
for j = 0 to numb
if stra(i) = strb(j) then
checkallnum = true
end if
next
if not checkallnum then
response.write "<br>[<font color='#ff0000'>"&stra(i)&"</font>]"
end if
next
%>