Cant figure out a recursive function.I think i got it. Thank you so much. int firstTwo(int n){ if(n < 100) return n / 10 + n % 10; re...
Cant figure out a recursive function.Yes, i understand the use of % and / and how they work. So far for cout << firstTwo(428); im getting...
Cant figure out a recursive function.Recently took intro c++ class and learning recursion but im not sure how to approach this question. ...
This user does not accept Private Messages