Farah Salman
Followers: 0 Following: 0
Feeds
답변 있음
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
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년 초과 전 | 0