answersLogoWhite

0

The flowchart in deriving the sum of given N numbers, You may follow the steps provided below:

  1. Draw the start symbol then a flow line connecting to item #2
  2. Draw the init box for the syntax: set variable_Sum=0, variable_A=0 then a flow line connecting to item #3
  3. Draw the input box and write variable_A then a flow line connecting to item #4
  4. Draw the decision box for 'Is variable_A not numeric?'. if yes, draw a flow line connecting to item #3 else draw a flow line connecting to item #5
  5. Draw the process box for the syntax: compute variable_Sum=variable_Sum + variable_A then a flow line connecting to item #6
  6. Draw the decision box for 'Do you want to add another number?'. If yes, draw a flow line connecting to item #3 else, draw a flow line connecting to item #7.
  7. Draw the output box and write variable_Sum then a flow line connecting to item #8
  8. Draw the end symbol.

Where:

variable_A contains a given N number and variable_Sum contains the result.

User Avatar

Leslie Stehr

Lvl 9
2y ago

What else can I help you with?

Related Questions

Write algorithm and draw flowchart to find the sum of even numbers?

jgfujtf


Draw a flowchart to find sum of odd numbers from the first 10 natural number?

xsdsd


What is a good site to learn flowcharts for beginners?

Draw a flowchart to find the sum of first 50 natural numbers.


Give a sample problem with the use of algorithm and flowchart symbols?

design a flowchart that will input three numbers and get their sum. If the sum is greater than 20, then print "sum>20",else print the sum.


Write a flowchart to find the sum of maximum and minimum o N natural numbers without using arrays?

huh?


What is the algorithm and flowchart to find Sum of natural numbers from 1 to10?

The general equation to find the sum of the numbers 1 to n is: (n*(n+1))/2So, for n=10, you have:(10*(10+1))/2(10*11)/2110/255


What is the algorithm and draw flow chart to find the sum and average of 3 numbers?

Algorithm to find the sum and average of 3 numbers: Start. Input three numbers (let's call them A, B, and C). Calculate the sum (Sum = A + B + C). Calculate the average (Average = Sum / 3). Output the sum and average. End. Flowchart: [Start] ↓ [Input A, B, C] ↓ [Sum = A + B + C] ↓ [Average = Sum / 3] ↓ [Output Sum, Average] ↓ [End]


The sum of two numbers is 12 and ther difference is 4 Find the sum?

12. Its given in the question


How do you find the missing number in a set of numbers where the average is given?

The average of a set of numbers is defined as the sum of those numbers divided by the number of numbers. If the average is given, multiply that by number of items in the set including the missing number. Subtract the sum of given numbers from this quotient and the missing number is revealed.


Draw a flowchart to accept five numbers and display the sum of the numbers?

start, inputbox,inputbox,inputbox,inputbox,inputbox,progresh,display,stop 


Flowchart of find the difference sum product and average of A and B Print the result?

See if flowchart is made then good reason is drawn for it. So, flow chart is essential for our cultural and social life.hence ,flowchart is important.


Create a flowchart and C programming language of a selection structure?

flowchart (start) < x=0 y=0> / print " enter two numbers" / | sum=x+y| / print the sum / (stop) c program #include<stdio.h> main() { int x,y,sum; clrscr(); printf("Enter two numbers\n"); scanf("d",&x,&y); sum=x+y; printf("sum=%d",sum); getch(); }