+ 1
Hey ya guys.. can someone explain this code to me..?
It's a code that displays the perfect numbers between 1 and 500... And the p = 1 and p++ what that for? https://code.sololearn.com/cM8UkyI6LOLk/?ref=app https://code.sololearn.com/cM8UkyI6LOLk/?ref=app
2 Answers
+ 1
P=1 is to reset the counter each time you iterate through i
P++ is to a post increment for the while loop
Not sure if that helped but hope i did
+ 1
Thanks that helped.. :))))