what math flowchart can make it true
dejene
Draw a flowchart to generate odd numbers between 100?
START INPUT a,b,c d=B*B-4ac x1=-b+d/2a x2=-b-d/2a print x1,x2 stop
You can draw a flowchart of solving a particular problem and then write a program to solve that problem.
It is easier to understand this if you draw the curve of the equation as a graph. From the graph you will see that the line curves back on itself, usually in a nice parabolic curve. Because it curves back, you find that most values of Y correspond to two different values of X - so there are two solutions.
dejene
Draw the graph of the equation. the solution is/are the points where the line cuts the x(horisontal) axis .
READ values of a, b and c,if a is zero then stop as we do not have a quadratic,calculate value of discriminantif D is zero then there is one root: ,if D is > 0 then there are two real roots: and ,if D is < 0 there are two complex roots: and ,PRINT solution.
Draw a flowchart to generate odd numbers between 100?
pictorial representation of a program is called a flowchart
START INPUT a,b,c d=B*B-4ac x1=-b+d/2a x2=-b-d/2a print x1,x2 stop
draw a flowchart to display the first tenth even number
draw the flowchart for transpose of a matrice
8iyuyiu
factorial
There is an organized plan and flowchart at the related link below.
Hi