0
Pseudocode
What would be the pseudocode for âDisplay the frequency of a keyboard from a web pageâ
3 Answers
+ 1
the frequency of the keyboard?
+ 1
suppose we have an object that shows the variable "times"
start
: loop
if (key_press) {
times = times + 1
}
goto loop
0
@URROVA I suppose the OP means how many times a certain key is pressed.