OnJava8-Examples/lowlevel/SerialNumberTest.java

17 lines
411 B
Java

// lowlevel/SerialNumberTest.java
// (c)2021 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
public class SerialNumberTest {
public static void main(String[] args) {
SerialNumberChecker.test(new SerialNumbers());
}
}
/* Output:
Duplicate: 33280
Duplicate: 33278
Duplicate: 33290
Duplicate: 33277
*/