SAKSHI CHANDRA
Followers: 0 Following: 0
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
4 years 前 | 0