Pregunta 2, 2° Certamen 2011:
Solución
Enunciado:
2.- Desarrolle un applet para medir el tiempo de reacción vista -
mano.
a) b)
| Inicialmente el applet debe mostrar algo similar a la figura a).
Luego de un tiempo aleatorio el applet muestra la palabra "Alerta!!" ante lo cual el usuario debe presionar el botón "Ya". El applet muestra el tiempo en milisegundos desde que se
muestra la Alerta hasta que presiona Ya como se muestra en b) |
Nota: Si es de utilidad, considere el uso de:
En clase System:
static long currentTimeMillis() Returns the current time in
milliseconds since January 1st, 1970
En clase Timer:
Timer(int delay, ActionListener listener) Creates a Timer and
initializes both the initial delay and between-event delay to delay
milliseconds.
En clase Math
static double random() Returns a double
value with a positive sign, greater than or equal to 0.0 and less than
1.0.
static long round(double a) Returns the closest long to the argument.