Display the prime numbers to 'max' using the Sieve of Eratosthenes. local max = 100;. local a = array(max, true);. for (local i = 2 ; i < math.sqrt(max) ...
確定! 回上一頁