Just saw this in a past exam paper and am looking for the best way to do it since I can't figure it out. We are not allowed use multiplication in our answer, it must use repeated addition. It must also be recursive and not iterative.
public static int add(int a, int b) {
}
Can anyone help me figure this out please? Thanks a lot.
a + bis equal toa + 1 + 1 + 1...(+ 1repeatedbtimes) – Tomasz Nurkiewicz May 17 '11 at 21:59