Computer Science, asked by geetanagar2509, 2 months ago

WAP to accept a number and print its factors.(for loop)

Answers

Answered by rakeshaade380
2

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