There's nothing wrong with your for loop, but a while loop is the wrong thing to be using here.
The logic of your for loop is:
- Set
ff to 1.
- Keep going while
ff <= f.
- After you've done everything in the
for loop, add 1 to ff.
This looks like it is exactly as you want.
The while loop isn't right, though. It will continue to do whatever code you write there for as long as ff is a factor of f, so unless you change them in the while code, you'll get an infinite loop. However, changing that to an if statement will give you what you want.
Since you're checking for factors, you don't actually need to check all possibilities up to f - only up to the square root of f. Whenever you find that ff is a factor, output both ff and f/ff as factors, unless f is a sqare number.
whileloop to check if a number divides intofevenly with no remainder (it's a single conditional check, so doesn't that sound like anif?). As for keeping factors, do you know anything about Java Collections? – birryree Dec 27 '11 at 16:52homeworktag – Nanne Dec 27 '11 at 16:52