some thoughts about coding in general:
first of all you may want to logically plan your sketch before doing any coding. i use pieces of paper for that, and it really helps. e.g. here you obviously needed a variable to store the minimum number of presses to zero the circle, (thats why i created 'last'), which changes at every successful zeroing, and this requirement would have been evident if you had a plan on paper. by a plan i mean stuff like this:
If A happens then B should happen.
Find a way to see if A happened or not?
A happens, when x is greater than y.
Make variables to store x and y.
so on...(this could also be done by drawing logical connections and stuff, it really depends on how your mind works)
syntax (coding) problems with your sketch:
"int timespressed = ENTER;" - doesnt make much sense. before writing a line of code you should always think about the purpose of that line. (im sure you had something in your mind when you wrote this, but i just cant figure what :).)
well, i hope this helps