Calculate the Nth term

Sort by

recency

|

820 Discussions

|

  • + 0 comments

    int find_nth_term(int n, int a, int b, int c) { int res = (a+b)+c; n += res; return (n);
    }
    its execute success but other test scenarios failed. Why? Any idea

  • + 0 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);
        }
    
    }
    
  • + 0 comments

    include

    include

    include

    include

    //Complete the following function.

    int find_nth_term(int n, int a, int b, int c) { //Write your code here. int ret = 0; int d = 0;

    if(n == 1)
    {
        ret = a;
    }
    else if(n == 2)
    {
        ret = b;
    }
    else if(n == 3)
    {
        ret = c;
    }else{
        d = c + b + a;       
        ret = find_nth_term(n - 1, b, c, d);
    }
    
    return ret;
    

    }

    int main() { int n, a, b, c;

    scanf("%d %d %d %d", &n, &a, &b, &c);
    int ans = find_nth_term(n, a, b, c);
    
    printf("%d", ans); 
    return 0;
    

    }

  • + 0 comments
    #include <stdio.h>
    #include <string.h>
    #include <math.h>
    #include <stdlib.h>
    //Complete the following function.
    
    int find_nth_term(int n, int a, int b, int c) {
      //Write your code here.
      if (n == 1) return a;
      if (n == 2) return b;
      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);
    }
    
    int main() {
        int n, a, b, c;
      
        scanf("%d %d %d %d", &n, &a, &b, &c);
        int ans = find_nth_term(n, a, b, c);
     
        printf("%d", ans); 
        return 0;
    }
    
  • + 0 comments

    include

    int find_nth_term(int n, int a, int b, int c) { int sum[n],count; sum[0]=a,sum[1]=b,sum[2]=c; for(int i=3;i