CPhill is correct; a slightly different approach is:
Consecutive odd integers are like: 3, 5, 7, 9, ... (they are 2 apart from each other)
So, three consecutive odd integers can be: x, x + 2, and x + 4
"four times the first integer" ---> 4·x
"twice the largest integer" ---> 2(x + 4) = 2x + 8
"difference is two" means subtract and get an answer of two; so subtact the smallest from the largest and have that answer be two: (2x + 8) - (4x) = 2
---> 2x + 8 - 4x = 2
---> simplify ---> 8 - 2x = 2
---> subtract 8 ---> -2x = -6
---> divide by -2 ---> x = 3 ---> x + 2 = 5 and x + 4 = 7