answersLogoWhite

0

#include #define NUM 100 //since prog is to be written for adding 100 natural
int main(){
int i,sum=0;
for(i=1;i<=NUM;i++) //adding the numbers to sum, from 1 to NUM
sum+=i;
printf("SUM IS %d",sum); //printing the result
}

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
ReneRene
Change my mind. I dare you.
Chat with Rene
DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
More answers

1. start

2. initialize counter (c = o)

3. initialize sum (sum = 0)

4. input n 'number of items for which average is to be calculated'

5. input the 1st (2nd, 3rd, ....) number

6 increment counter (c = c+1)

7. add the last number to sum (sum = sum+n)

8. make a decision (is counter = number of items?) yes goto 9 No goto 5

9. find average (ave = sum/n)

10. print result

11. end

User Avatar

Wiki User

11y ago
User Avatar

CLS: DEFINT SUM: SUM = 0

FOR K = 1 to N

SUM = SUM + N

NEXT K

PRINT "The sum of the first "; N; "natural numbers is "; SUM; ".": PRINT

PRINT "You're welcome. The pleasure is ours. Drop in any time."

END

User Avatar

Wiki User

13y ago
User Avatar

int sum( int n){

if( n==0)

return 0;

else

return n + sum(n-1);

}


A call to the function as:


sum(n)


will return the sum of n numbers.

User Avatar

Wiki User

12y ago
User Avatar

The sum of the natural numbers cannot be found by any method, iterative or not, as the series is infinitely long. Please restate the question.

User Avatar

Wiki User

13y ago
User Avatar

step 1. count the numbers.

step 2. sum of n numbers is n*(n+1)/2.

step 3. solve n*(n+1)/2.

Step 4. Exit

User Avatar

Wiki User

12y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What is the Program to find sum of natural number using recursion?
Write your answer...
Submit
Still have questions?
magnify glass
imp