1. Please don't post the same question twice. Be patient and wait for a tutor with this expertise to come online and see it.
2. NEVER put personal information in a post, such as your email address. Posts with information like that will be removed.
Input Process Output or IPO with Flowchart
Question: A reel of electric wire 150 metres long is cut into two pieces.One is 40 metres shorter than twice the length of the other.How long is each piece.
Please answer with flowchart.Thanks and god bless.
2 answers
no flowcharts here. So, the flow of logic is just
prompt for n1
read n1
since n1+n2=150, n2 = 150-n1
Also, n2 = 2*n1 - 40
You need to solve n1 + (2*n1-40) = 150
n1 = (150+40)/3
n2 = 150-n1
print n1 and n2 (with labels)
prompt for n1
read n1
since n1+n2=150, n2 = 150-n1
Also, n2 = 2*n1 - 40
You need to solve n1 + (2*n1-40) = 150
n1 = (150+40)/3
n2 = 150-n1
print n1 and n2 (with labels)