int sum = 0;
int i;
for(i = 0; i < n; ++i) {
sum += i;
}
Chat with our AI personalities
The sum of the first prime numbers is 5
Because the first prime numbers are 2 & 3.
Thus , 2 + 3 =5
The sum is 5
I hope you understand my reason for my answer.
By grade 4 th student
byeee
Sum = n/2[2Xa1+(n-1)d] where n is last number, a1 is the first number & d is the common difference between the numbers, here d=2 for the even /odd numbers. Sum = n/2 [2Xa1+(n-1)2]
#include #define NUM 100 //since prog is to be written for adding 100 naturalint main(){int i,sum=0;for(i=1;i
For the first 5 natural numbers (integers):x = 1 + 2 + 3 + 4 + 5print xFor 'n' amount of natural numbers (Python v2 example)n = int(raw_input('Enter max integer: '))count = 0sumn = 0while count < n:sumn = sumn + 1count = count + 1print sumn
to print the sum of first ten numbers:- void main() {int i,sum; sum=0; while(i<=10) sum=sum+i; i=i+1; } printf("The sum is : %d",sum); }
#include#includevoid main(){int sum_sqr(int n);clrscr();printf("%d",sum_sqr(5));//Sum of first 5 natural numbers' square valuesgetch();}int sum_sqr(int n){int i,sum=0;for(i=1;i