You are viewing a single comment's thread. Return to all comments →
int find_nth_term(int n, int a, int b, int c) { //Write your code here. if(n==3){ return c; }else{ return find_nth_term(n-1, b, c, a+b+c); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Calculate the Nth term
You are viewing a single comment's thread. Return to all comments →