algorithm and flow chart to find the product of N even numbers algorithm
Answers
Answered by
2
Explanation:
Algorithm:
Step 1: Start
Step 2: Read the limit of numbers, n
Step 3: Assign i=1
Step 4: Assign sum=0
Step 5: Repeat steps 6,7&8 until i=n reaches
Step 6: If i%2==0 goto step 7
Step 7: Compute sum=sum+i
Step 8: Compute i=i+1
Step 9: Print sum of even numbers, sum
Step 10: Stop
Flowchart: Reference to the above picture
Attachments:
Similar questions