Info

This question is closed. Reopen it to edit or answer.

Find divisors by using for loop

1 view (last 30 days)
Takashi Fukushima
Takashi Fukushima on 6 Nov 2019
Closed: John D'Errico on 6 Nov 2019
Hello,
I have a homework assignment to write a program to find all divisors for a given number by using "for loop", but I even have no idea where to start.
The outcome display looks like this...
Enter a candidate for a prime number: 100 (For example)
Divisor found : 2
Divisor found : 4
Divisor found : 5
Divisor found : 10
Divisor found : 20
Divisor found : 25
Divisor found : 50
The number is not a prime
100 is just an example, and I want this program to find divisors when its user puts a number whatever they want.
I appreciate your response in advance!
  1 Comment
Walter Roberson
Walter Roberson on 6 Nov 2019
Search Mathworks.com for information on requesting user input, and information on for loops.
You also need to think of a way to test whether a number exactly divides another number.

Answers (0)

Community Treasure Hunt

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

Start Hunting!