How to display all prime numbers between two number input by user?

54 visualizaciones (últimos 30 días)
How to display all prime numbers between two number input by user?

Respuesta aceptada

Walter Roberson
Walter Roberson el 23 de Mayo de 2015
n = firstnumber : secondnumber;
p = isprime(n);
n(p) %displays the primes

Más respuestas (3)

B.k Sumedha
B.k Sumedha el 23 de Mayo de 2015
clc
num1 =input('Enter num1 value ');
num2 =input('Enter num2 value ');
n = num1 : num2 ;
p = isprime(n);
n(p) %displays the primes
Well that was an gud answer from walter

Josaiah Ang
Josaiah Ang el 23 de Mayo de 2015
Editada: Josaiah Ang el 23 de Mayo de 2015
how do i go along with this set of code?
clc
num1 =input('Enter num1 value ');
num2 =input('Enter num2 value ');
n = firstnumber : secondnumber;
p = isprime(n);
n(p) %displays the primes

Rashed Khan
Rashed Khan el 28 de Nov. de 2017
n=input('Type a number:'); j=0; fprintf('primes up to %d are:',n); for k=1:n if isprime(k)==1 fprintf('%d',k); j=j+1; else fprintf(''); end end fprintf('\n'); fprintf('Number of primes up to %d is %d',n,j); fprintf('\n');

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by