Computer Science, asked by 8184804446, 19 hours ago

draw the flowchart find out sum of first N natural numbers ​

Answers

Answered by archu532825
1

Answer:

Algorithm :::

Step 1 : Start

Step 2 : Assign sum=0 and i=0

Step 3 : Read limit of number , n

Step 4 : Repeat steps 5 to 6 until i=n reached

Step 5 : Compute sum=sum+i

Step 6 : Compute i=i+1

Step 7 : Print sum

Step 8 : Stop

Similar questions