
//Programmer: Akinwale Owi
//Company: Dagba Computers
//Program Purpose:Create and Print From a Multi Dimensional Array
package dagbacomputers;
/**
*
* @author Akin
*/
public class DagbaComputers {
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
//Creating the multi dimensional array
int[][]triArray = { {4, 39, 50, 111111},
{5000, 444, 29999, 2},
{28, 888888, 7, 55}}; // end of array
//Printing out one value from the first line
System.out.println(“A First Line Value: ” + triArray[0][1]);
//Printing out one value from the second line
System.out.println(“A Second Line Value:” + triArray[1][2]);
//Printing out one value from the third line
System.out.println(“A Third Line Value:” + triArray[2][0]);
}//end of main
}//End of DagbaComputers Class
————End of Program———-
————Output————–
