โ Back to If Statements
Question 326
Quadratic Roots Count
Quadratic Roots Count
Read three integersa,b, andc, each on its own line, the coefficients ofa*x*x + b*x + c = 0(withanot zero). Use the discriminantb*b - 4*a*c: printTwo rootsif it is positive,One rootif it is zero, andNo real rootsif it is negative. For example, for input1then-3then2, print: Two roots
Expected Output:
Two roots
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.