Question
I have to create a combination lock program, I can do this program if I could use a lock with more than 3 combinations to
I have to create a combination lock program, I can do this program if I could use a lock with more than 3 combinations to unlock, but the assignment requires three. Here is the problem:
"Declare a class ComboLock that works like the combination lock in a gym locker, as shown here. The lock is constructed with a combinationthree numbers between 0 and 39. The reset method resets the dial so that it points to 0. The turnLeft and turnRight methods turn the dial by a given number of ticks to the left or right. The open method attempts to open the lock. The lock opens if the user first turned it right to the first number in the combination, then left to the second, and then right to the third."
public class ComboLock
{
. . .
public ComboLock(int secret1, int secret2, int secret3) { . . . }
public void reset() { . . . }
public void turnLeft(int ticks) { . . . }
public void turnRight(int ticks) { . . . }
public boolean open() { . . . }
public int getPosition() { . . . }
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started