Posts by Alessandra Faria • 29 points
2 posts
-
0
votes4
answers4551
viewsA: Recursive multiplication in C
The recursive method for multiplying two factors is 3+3+3+3=11: First think about how multiplication is done. 34=11 is the same as 3 + 42 which means the same as 3 + (4*(3-1)) recursively int…
canswered Alessandra Faria 29 -
2
votes5
answers11043
viewsA: Recursive Fibonacci printing
Remember what it is about the function it is the sum of the predecessor by the previous predecessor , it begins with two terms the 0 and the 1. fórmula : 0, 1,(1+0),((1+0)+1),(((1+0)+1)+(1+0))....…