trying to display a list of numbers
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Maria Galle
 il 23 Set 2020
  
    
    
    
    
    Modificato: Ameer Hamza
      
      
 il 23 Set 2020
            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 Commenti
Risposta accettata
  Ameer Hamza
      
      
 il 23 Set 2020
        
      Modificato: Ameer Hamza
      
      
 il 23 Set 2020
  
      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 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Data Import and Analysis in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

