answersLogoWhite

0

The flowchart in deriving the sum of two numbers, you may follow the steps provided below:

# Draw the start symbol then a flow line connecting to item #2 # Draw the init box for the syntax: set variable_Sum=0, Variable_A=0, Variable_B=0 then a flow line connecting to item #3 # Draw the first input box and write variable_A then a flow line connecting to item #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 # Draw the second input box and write variable_B then a flow line connecting to item #6 # Draw the decision box for 'Is variable_B not numeric?'. if yes, draw a flow line connecting to item#5 else draw a flow line connecting to item #7 # Draw the process box for the syntax: compute variable_Sum=variable_A + variable_B then a flow line connecting to item #8 # Draw the output box and write variable_Sum then a flow line connecting to item #9

# Draw the end symbol.

Where:

variable_A contains the first number, variable_B contains the second number and variable_Sum contains the result.

User Avatar

Wiki User

15y 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.


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

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


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?


How do you write and draw an algorithm in flowchart for Add 2 and 4 and print the sum?

2+4


How you Draw a flow chart for the sum of even numbers within 0 20?

Oh, dude, drawing a flowchart for the sum of even numbers between 0 and 20 is like making a sandwich - you just gotta follow the steps. Start with a box labeled "Start" and draw arrows to boxes for each even number from 0 to 20. Connect those boxes to a box labeled "Sum" and voila, you've got yourself a flowchart for adding up those even numbers. It's as easy as eating pie... mmm, pie.


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


How do you draw a flowchart to get the sum of two numbers?

Starts Input a,b Result=(a-b)*(a-b) Print"square of difference=",result


How do you draw a flow chart to find the average of three numbers?

Sum = Sum + first number Sum = Sum + second number Sum = Sum + third number Average = 1/3 x Sum


Write the algorithm and draw the flowchart to find Sum of N Prime number?

Ah, finding the sum of N prime numbers is a lovely challenge! You can create an algorithm by first defining a function to check if a number is prime, then loop through numbers starting from 2 and add the prime numbers to a running sum until you reach N prime numbers. For the flowchart, you can start with a start/end symbol, then use decision symbols to check if a number is prime, loop symbols to iterate through numbers, and a process symbol to calculate the sum. Remember to add symbols for input and output as well. Happy algorithm painting!