Effacer les filtres
Effacer les filtres

Computing the 10,005th Prime Number

1 vue (au cours des 30 derniers jours)
Daniel Vehabovic
Daniel Vehabovic le 26 Fév 2019
Can someone please help me in regards to writing a script that will help you compute the 10,005th Prime Number.
These were some of the tips that were given to us to help us.
  • Use the MATLAB function isprime( ) to test if a number is prime.
  • You will want to use one variable to keep track of how many primes have been found (i.e. increment this value by one if a prime is found)
  • Use another variable to keep track of which value is being tested.
  • Use a while-loop to iterate until you have found 10,005 prime numbers.
  • Display the number that was being tested after the while loop is complete.
Any advice or help would be greatly apprecaited. I'm totally lost on this part.
  1 commentaire
James Tursa
James Tursa le 26 Fév 2019
You need to start writing some code and make an attempt. Then, when you have problems, come back with your code and ask specific questions about the issues you are having.

Connectez-vous pour commenter.

Réponses (1)

Naman Bhaia
Naman Bhaia le 1 Mar 2019
Hey Daniel,
What James said makes sense, you must try the problem and ask about your doubts here. But here are some hints to get the ball rolling.
  1. Initialise a count variable to 0
  2. Initialise a temporary variable to 2
  3. Run an infinite while loop
  4. Inside the loop, check if the temporary variable is prime. If yes, increase count by one
  5. Inside the loop, check if the count variable is equal to 10005. If yes, then break out from the loop
  6. End of while loop
  7. display the temporary variable as that contains the value of the prime number you need

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by