Calculate the Nth term

  • + 54 comments
    // logic
    int find_nth_term(int n, int a, int b, int c) {
        if(n == 1)
            return a;
        else if (n == 2)
            return b;
        else if (n == 3)
            return c;
        
        return find_nth_term(n-1,a,b,c)+find_nth_term(n-2,a,b,c)+find_nth_term(n-3,a,b,c);
        
    }