Java Programming Tutorial - - Multidimensional Arrays on October 06, 2018 Get link Facebook X Pinterest Email Other Apps import java.util.Random; public class Coffee{ public static void main(String arg[]) { int firstarray[][]= {{ 8,9,10,11}, {12,13,14,15}}; int secondarray[][]= {{ 30,31,32,33}, {43}, {4,5,6}}; firstarray[0][1] } } Comments
Comments
Post a Comment