Okay, so say i want to find factors of a number a. I know how to do that, using a for loop and an arraylist. My problem is that (and i have no idea how to go about this) I want the factors in pairs.(that multiply together to get the original number) I would assume I could get the factors in multiple arraylists that each have 2 variables.. but that is extremely unwieldy as different numbers will have different numbers of factors. (Not to mention, I dont know how to do this..)
After this, I want to test those variables in an equation to narrow them down. Say, whichever of those pairs add up to a given number is the one I want to use. I have been trying to figure out how to go about all of this using tutorials but I am completely lost, as I am somewhat new to Java.
Thank you for any and all help :-)
aand add up tob; have I understood correctly? If that's the case, is it necessary to iterate through all the factors ofa? Another approach might just be to express those numbers as the roots of a quadratic equation, and apply the quadratic formula. That ought to take one or two lines of code, without any iteration. If you consider this a valid approach for what you're trying to do, then post again and I'll provide a fuller answer. – David Wallace Dec 30 '11 at 3:47