If you're going to run into a lot of quadratic equations with integer constants and coefficients, you should really learn how to factor - it's often easier.
Example:
x²+24x-81=0
(x+27)(x-3)=0
gives x=-27,3 Do that with the quadratic formula and you're going to need a calculator.
Alternatively, learn the complete the square method for solving the quadratic formula. For the same problem,
x²+24x-81=0
x²+24x = 81
find half of 24, square it, and add it to both sides
x²+24x + 144 = 81 + 144
the left side is a perfect square:
(x+12)² = 225
take the square root of both sides:
x+12 = +/- 15
*note: 15 squared is 225, and -15 squared is 225, hence the +/-
subtract the 12.
15-12 = 3, and -15-12 = -27. The same answers as above.
Once you learn that method, it takes up a lot fewer lines and spaces than I've typed it. The complete the square method is ideal with the coefficient on x² is 1, and the coefficient on the x is even. Or, if the coefficient on the x term is divisible by twice the coefficient on the x² term.
It takes up this much space (I'll use dots for spacing):
x²-6x=11 *note, if it was x²-6x-11=0, I'd simply change the - 11 into =11
(x-3)²=20
x=3 +/- 2sqrt(5)
After doing a few of these, a decent student will eventually be able to just look at x²-6x-11=0 and write down the answer.