> Hi, I've got a project in which I need to write a > function with two arguments. The function has to add > the two arguements by using the succ ( x + 1 ) > operator y times. This all has to be done using a > conditional equation, and I am sooooo stuck. If > anybody has any suggestions please let me know. THANK > YOU! Yeah, that's definitely a weird function! ;) You might want to try using recursion, and considering the two cases: m + (n+1), and m + 0. --fac
- wierd function Stefan Friedel
- Frank A. Christoph
