Last active
October 17, 2018 00:38
-
-
Save memish/8bd574b90242c5d1307f111b6af9923d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TwoDArray | |
{ | |
public static void main(String args[]) | |
{ | |
// int[][] sales = new int[4][6];//row column | |
//OR | |
//q1, q2,q3,q4 | |
int[][] sales = { {2,3,4,5},//2014 | |
{7,8,19,10},//2015 | |
{12,14,15,16} };//2016 | |
}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment