CJCoding With Joseph

Quadratic Roots Count

Read three integers a, b, and c, each on its own line, the coefficients of a*x*x + b*x + c = 0 (with a not zero). Use the discriminant b*b - 4*a*c: print Two roots if it is positive, One root if it is zero, and No real roots if it is negative. For example, for input 1 then -3 then 2, print:

Two roots

Expected Output:

Two roots
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
1\n-3\n2
This input is automatically fed to your program's stdin
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.