How can I output numbers that evenly divide to the user's input number? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

How can I output numbers that evenly divide to the user's input number?

The user inputs a positive number. Then the computer outputs all the numbers less than or equal to the user's input number. Below each number, the computer outputs numbers that evenly divide to that number. Edit: I want the computer to output the numbers that have no remainders. For example, if the input is 15, the output would be: 15-> 1, 3, 5. But, it will also do the same for every positve number before 15. Ex: 1-> 1 2-> 1 2 3-> 1 3 ..... 15-> 1 3 5

27th Feb 2017, 3:01 AM
Poppy
Poppy - avatar
3 Antworten
+ 1
I didn't understand what do you mean by evenly divide? if input is 15 then what outputs you want?
27th Feb 2017, 3:42 AM
Raj Kumar Chauhan
Raj Kumar Chauhan - avatar
0
then according to this for 15 it should be: 1 3 5 15
27th Feb 2017, 4:10 AM
Raj Kumar Chauhan
Raj Kumar Chauhan - avatar
0
here I wrote code for you. Please check it out https://code.sololearn.com/cEekzPcs57p9/?ref=app
27th Feb 2017, 4:30 AM
Raj Kumar Chauhan
Raj Kumar Chauhan - avatar