photo

Farah Salman


Last seen: 2 years ago Active since 2021

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Writing a function to find prime numbers
function y = isPrime(N) for i=2: floor(N/2) if mod(N,i)==0 y=false; return end y= true; end

3 years ago | 0