Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class TestClockDisplay
- {
- public void test()
- {
- ClockDisplay clock = new ClockDisplay();
- clock.setTime(22,30);
- System.out.println(clock.getTime());
- clock.setTime(10,30);
- System.out.println(clock.getTime());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment