This site requires JavaScript, please enable it in your browser!
Greenfoot back

SPower's Comments

Back to SPower's profile

Sorry, the first @ should be @erdelf
@Yoman that's true, but you forgot to tell that the methods take some time to do: it looks like your program stops for a while. @Yoman take a look at those courses: http://www.greenfoot.org/collections/321 There is a course about the UserInfo class.
I see you've built in it, great!
Looks like you've changed it: there is no way to get the password, why didn't you remember it?
If you haven't changed it yet, you must press enter immediately.
That's one of the slower versions of calculating pi. You better use this: pi/4 = 4 * arctan(1/5) - arctan(1/239)
Probably doing this: pi/4= 1 - 1/3 + 1/5 - 1/7 + 1/9 ....
No, there's no way.
You shouldn't save a new score in user info every act cycle, it takes more time than you would think of a normal method. It's better to keep the score in an instance variable, and when the game is over, save it in user info.