trying to display a list of numbers
조회 수: 2 (최근 30일)
이전 댓글 표시
I am trying to display a list of numbers of prime numbers from 1-1000. I tried using a for loop and if else statements.
for n=1:1000
if rem(n,2) == 0
disp('Not a prime number')
elseif rem(n,3) == 0
disp('Not a prime number')
elseif rem(n,5) == 0
disp('Not a prime number')
elseif rem(n,7) == 0
disp('Not a prime number')
elseif rem(n,11) == 0
disp(num2str(n))
end
end
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 9월 23일
편집: Ameer Hamza
2020년 9월 23일
Why not
primes(1000)
For an alternative solutions, check the code here: https://www.mathworks.com/matlabcentral/fileexchange/32774-this-program-finds-prime-numbers-manually
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!