+ 2
Why is this code showing no output ?
I was trying to make it output true if it's the factors of a number are less than four. https://code.sololearn.com/cf7Zv1vbGYQF/?ref=app
2 Antworten
+ 3
Hey, just change num < x to x < num. It will work just fine :))
Wrong :
num < x
Correct :
x < num
+ 3
Thanks Arb Rahim Badsa