You can put this solution on YOUR website! find the consecutive odd integer whose product is 195
-----------
There are 2 ways to do these.
1 - the hard way that takes longer
n*(n+2) = 195
n^2 + 2n - 195 = 0
(n+15)*(n-13) = 0
n = 13
n = -15
--> 13 and 15, plus or minus
-------------------
The easy way: very close to 14
The numbers are integers close to 14 --> 13 and 15.
Don't forget the negative ones.