posted 15 years ago
I made this code as a practice exercise......this program should be controlled with simply four
cursor control keys and each key must be assigned a method.....i.e., by pressing a particular
key some operation must be performed....what this program do is it should just reflects the changes in the distance traveled and speed of cycle by accelerating and decelerating the cycle and it should also change direction of the cycle(of course imaginary one since i haven't reached to the topics using graphics) .........as stated below
right cursor key(-->) : turnLeft().....and should change the direction as per the code
left cursor key(<--) : turnRight()....and should change the direction as per the code
up cursor key(<) : paddleMoving(int i)....here 'i' states for number of paddle rounds user
wants to apply which would be asked in the starting of the program
down cusor key : applyBrakes()......which eventually stops the cycle.
but the problem is that i dont know how to use Scanner for cursor keys...therefore i have left the class containing main() method.....Please help
>