photo

shweta s


Last seen: casi 4 años hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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; ...

casi 4 años hace | 0