हिंदी

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

Advertisements
Advertisements

प्रश्न

WAP to print the sum of following series.

1+22+33+………+nn

टिप्पणी लिखिए

उत्तर

#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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (June) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×