共通のLUAクリップ
2785 ワード
TSを生成する方法
101~200のすべての素数を生成
複数のラベルの組合せを表すクエリhttp://blog.csdn.net/duck_genuine/article/details/7430642を素数で解決する
質量数のアルゴリズムのN種類の境界を求めますhttp://blog.csdn.net/autumn20080101/article/details/9491131
local t=ngx.now();
local n=os.date("%Y%m%d%H%M%S").."00"..string.sub(t,12,14);
n=n..string.rep("0",19-string.len(n));
ngx.say(n);
101~200のすべての素数を生成
function is_prime(n)
for x = 2, math.sqrt(n) do
if (n % x) == 0 then return false end
end
return true
end
total = 0
for x = 101, 200 do
if is_prime(x) then
total = total + 1
ngx.say(x)
end
end
ngx.say("Total " .. total .. "primes")
複数のラベルの組合せを表すクエリhttp://blog.csdn.net/duck_genuine/article/details/7430642を素数で解決する
質量数のアルゴリズムのN種類の境界を求めますhttp://blog.csdn.net/autumn20080101/article/details/9491131