package chapter9; /** * Title: Chapter 9, "Object-Oriented Software Development" * Description: Examples for Chapter 9 * Copyright: Copyright (c) 2000 * Company: Armstrong Atlantic State University * @author Y. Daniel Liang * @version 1.0 */ // TestIntegerMatrix.java: Test matrix operations involving // integer values public class TestIntegerMatrix { /**Main method*/ public static void main(String[] args) { // Create Integer arrays m1, m2 Integer[][] m1 = new Integer[5][5]; Integer[][] m2 = new Integer[5][5]; // Initialize Integer arrays m1 and m2 for (int i=0; i