shweta s
Followers: 0 Following: 0
Feeds
已回答
Function to find the next prime number...
%to find the next prime no. function p = next_prime(n) if (isprime(n)) p=n+1; else while(~isprime(n)) n=n+1; ...
Function to find the next prime number...
%to find the next prime no. function p = next_prime(n) if (isprime(n)) p=n+1; else while(~isprime(n)) n=n+1; ...
4 years 前 | 0