Question: Use Java please... Write a Java class ComboLock that works like the combination lock in a gym locker. The lock is constructed with a combination,

Use Java please...

Use Java please... Write a Java class ComboLock that works like the

Write a Java class ComboLock that works like the combination lock in a gym locker. The lock is constructed with a combination, three numbers between 0 and 39. The reset method resets the dial so that it points to 0. The turnleft and turnRight methods turn 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. The class and its methods' signatures are as follows: public class ComboLock { public ComboLock(int secreti, int secret2, int secret 3) {...} public void reset() {...} public void turnleft(int ticks) {...} public void turnRight(int ticks) {...} public boolean open() {...} Also, provide a tester class, ComboLockTester, that tests the above class using various combinations entered by a user inside a loop. User will exit from the loop by entering three Os as the combination. Java file names: ComboLock.java and ComboLock Tester.java Write a Java class ComboLock that works like the combination lock in a gym locker. The lock is constructed with a combination, three numbers between 0 and 39. The reset method resets the dial so that it points to 0. The turnleft and turnRight methods turn 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. The class and its methods' signatures are as follows: public class ComboLock { public ComboLock(int secreti, int secret2, int secret 3) {...} public void reset() {...} public void turnleft(int ticks) {...} public void turnRight(int ticks) {...} public boolean open() {...} Also, provide a tester class, ComboLockTester, that tests the above class using various combinations entered by a user inside a loop. User will exit from the loop by entering three Os as the combination. Java file names: ComboLock.java and ComboLock Tester.java

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!