You need a smoothed average, the easiest way is to take the current answer (th etime the time to draw the last frame) and combine it with the previous answer.
eg. time = time * 0.9 + last_frame * 0.1
By adjusting the 0.9 / 0.1 ratio you can change the 'time constant' - that is how quickly the number responds to changes. A larger fraction in favour of the old answer gives a slower smoother change, a large fraction in favour of the new answer gives a quicker changing value. Obviously the two factors must add to one!
