// Project: StaticMethods // No modules defined // Source code file: Test.java // Test the countdown and square methods defined // in Countdown.java and Square.java, respectively. public class Test { public static void main(String[ ] args) { // Test the countDown method CountDown.countDown(10); System.out.println( ); // Test the square method System.out.println(Square.square(5)); } }