Computer Science, asked by ritammukherjee488, 2 days ago

write a program to accept a number, display all it factors.​

Answers

Answered by lakhwinderduggal786
0

Explanation:

Logic to find all factors of a number

Input number from user. Store it in some variable say num .

Run a loop from 1 to num , increment 1 in each iteration. The loop structure should look like for(i=1; i<=num; i++) .

For each iteration inside loop check current counter loop variable i is a factor of num or not.

Similar questions