+ 3
(SOLVED)I need help
My code outputs all the perfect numbers within the given range. But it outputs "14" which is not a perfect number. I can't find why. Any help will be appreciated.( Look up "perfect number" in Google if you needed) https://code.sololearn.com/cD9V5XCvuHM9/?ref=app
3 Respostas
+ 2
You increment j after you assign a value. Therefore j is 1 too high. J always points to the next array position, which is unassigned. You need to decrement j once after your for loop so it points to the last valid integer. Also, you should define your array as a long int array and int i should also be a long int as well. Once you get into higher numbers, those will fail if they are ints.
+ 2
Line 33 in the for loop change it from
For(; j>=0; --j)
To
For(--j; j>=0; --j)
(If you want to print them out at least)
+ 1
Oh yes thank you Odyel and Jerry Hobby