Question

Sum of Series 1+8+27+64+125….+n

				
					ENTER THE Nth TERM
5
SUM OF SERIES=225
				
			

Share code with your friends

Share on whatsapp
Share on facebook
Share on twitter
Share on telegram

Code

				
					import java.util.Scanner;
public class SumSeries
{
    public static void main()
    {
        int n=0,i=0;
        long sum=0,num=0;
        Scanner sc=new Scanner(System.in);
        System.out.println("ENTER THE Nth TERM");
        n=sc.nextInt();
        for(i=1;i<=n;i++)
        {
            num=(long)Math.pow(i,3);
            sum=sum+num; 
         
        }
        System.out.println("SUM OF SERIES="+sum);
    }
}

				
			

Leave a Reply

Your email address will not be published. Required fields are marked *