Feeds
답변 있음
Function to find the next prime number...
function k = nxt_prime(n) k=n+1; while ~isprime(k) k=k+1; end end
Function to find the next prime number...
function k = nxt_prime(n) k=n+1; while ~isprime(k) k=k+1; end end
거의 6년 전 | 0
