コード例 #1
0
    public static Int32 NextPrime(Int32 x)
    {
        while (GlobalMembersUtil.SmallPrimes(x) != 1)
        {
            x++;
        }

        return(x);
    }