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!