Question: Exercise Write algorithm and draw flowchart to find the sum of the series 1+2+3+ ... + N. Solution Algorithm : - Step 1: input N

Exercise Write algorithm and draw flowchart to find the sum of the series 1+2+3+ ... + N. Solution Algorithm : - Step 1: input N . Step 2: set num = 1, sum = 0 . Step 3: if num > N then GO TO step 7 ENDIF Step 4: sum = sum + num Step 5: num = num + 1 Step 6: GO TO step 3 Step 7: stop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
