| 发表于:2007-10-11 22:05:303楼 得分:30 |
deflng a-d sub list3() const s as string = "0123456789abcdefghijklmnopqrstuvwxyz" dim x(46655) as string for a = 1 to 36 for b = 1 to 36 for c = 1 to 36 x(d) = mid(s, a, 1) & mid(s, b, 1) & mid(s, c, 1) d = d + 1 next c, b, a debug.print join(x, ",") end sub | | |
|