Community Profile

photo

shweta s


Last seen: oltre 3 anni fa Attivo dal 2020

Followers: 0   Following: 0

Statistiche

  • First Answer

Visualizza badge

Feeds

Visto da

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

oltre 3 anni fa | 0