Page 1 of 1

WPM?

Posted: Wed Sep 21, 2005 4:22 pm
by Guest
How could I display WPM(Words per minute aka gwam rate) in real time?

Posted: Wed Sep 21, 2005 4:58 pm
by {Nathan}
Heres some psuedo code:

Code: Select all

(Beggining of program)
(start loop)
Timer = Time
(do the some stuff)
IF Time >= 60 then WPM = (the amount of words they typed)
loop
If you need help on the amount of words they typed, use INSTR$ and find the spaces and look at a parser tutor... I hope I helped.

Reply

Posted: Wed Sep 21, 2005 4:59 pm
by Guest
Thanks...