Advertisements
Advertisements
प्रश्न
Draw the flowchart for finding the roots of quadratic equation. Write program for same.
उत्तर
}
else if (discriminant == 0)
{
r1 = r2 = -b/(2*a);
printf("r1 = r2 = %.2lf;", r1);
}
else
{
rp = -b/(2*a);
ip = sqrt(-discriminant)/(2*a);
printf("r1 = %.2lf+%.2lfi and r2 = %.2f-%.2fi", rp, ip, rp, ip);
}
return 0;
}
Output: Enter coefficients a, b and c: 2.3 4 5.6 Roots are: -0.87+1.30i and -0.87-1.30i |
shaalaa.com
Three Construct of Algorithm and Flowchart
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Define Algorithm. Write Algorithm to check whether given number is Armstrong number or not also mention input and output specifications to algorithm.
Explain various storage classes with example.
State True or False with reason.
An algorithm is a graphical representation of the logic of a program.
Draw flowchart for “if…else” and “while” statement of C language.
What is the need of computer programming. What do you mean by structured programming? Develop an ALGORITHM and FLOWCHART to find reverse of a number.
Draw the flow chart to find roots of a quadratic equation.