Skip to content

Instantly share code, notes, and snippets.

@memish
Last active October 17, 2018 00:38
Show Gist options
  • Save memish/8bd574b90242c5d1307f111b6af9923d to your computer and use it in GitHub Desktop.
Save memish/8bd574b90242c5d1307f111b6af9923d to your computer and use it in GitHub Desktop.
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