English

Wap to Print the Sum of Following Series.1+22+33+………+Nn - Structured Programming Approach

Advertisements
Advertisements

Question

WAP to print the sum of following series.

1+22+33+………+nn

Short Note

Solution

#include<stdio.h>
#include<conio.h>
void main()
{
int n,sum=0;
clrscr();
printf("Enter a number ");
scanf("%d",&n);
while(n!=0)
{
sum=sum+(n*n);
n--;
}
printf("The sum of the series is %d",sum);
getch ();
}

Output:
Enter a number 3
The sum of the series is 14

shaalaa.com
Control Structures - Looping
  Is there an error in this question or solution?
2017-2018 (June) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×