The sum of 25 and 40 is 65. The process of calculating this number is known as addition, which totals two or more numbers together.
Chat with our AI personalities
In C: #include <stdio.h> int main(void) { int i, sum=0; for (i=10; i<=40; i+=2) { sum += i; } printf("%d\n", sum); return 0; }
10 for t = 1 to 50 20 input a 30 c = c + a 40 next t 50 print c
Sum = Sum + first number Sum = Sum + second number Sum = Sum + third number Average = 1/3 x Sum
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); }
The following will sum all integers from 1-100. Adjust according to your needs.int sum = 0;for (int i = 1; i