Question

Sum of Series 12+22+32+….+n2

				
					ENTER THE Nth TERM
3
SUM OF SERIES=14
				
			

Share code with your friends

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

Code

				
					import java.util.Scanner;
public class Series
{
    public static void main()
    {
        int n=0,i=0,sum=0;
        Scanner sc=new Scanner(System.in);
        System.out.println("ENTER THE Nth TERM");
        n=sc.nextInt();
        for(i=1;i<=n;i++)
        {
            sum=sum+i*i; 

        }
        System.out.println("SUM OF SERIES="+sum);
    }
}


				
			

Leave a Reply

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