19.1k views
4 votes
Write a Python Program to find Prime Factors of a Number using For Loop, and While Loop

User Neofetter
by
3.1k points

1 Answer

3 votes

Answer:

1. Take the value of the integer and store in a variable.

2. Using a while loop, first obtain the factors of the number.

3. Using another while loop within the previous one, compute if the factors are prime or not.

4. Exit.

hope it helpsâ˜ș

User GoodJuJu
by
3.9k points