Computer Science, asked by palbarnali46, 8 months ago

accept a number and print its factor​

Answers

Answered by mdshakoor332
1

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