Answers for "java array.sort 2d array"

10

how to print a 2d array in java

for (int row = 0; row < arr.length; row++)//Cycles through rows
{
  for (int col = 0; col < arr[row].length; col++)//Cycles through columns
  {
    System.out.printf("%5d", arr[row][col]); //change the %5d to however much space you want
  }
  System.out.println(); //Makes a new row
}
//This allows you to print the array as matrix
Posted by: Guest on April-22-2020
6

arrays sort 2d array java

Arrays.sort(myArr,(double[] a,double[] b)->{
                //here multiple lines of code can be placed
                return a[0]-b[0]; 
            });
Posted by: Guest on July-08-2020
0

How to sort 2d array in java using stream api

Arrays.sort(myArr, (a, b) -> a[0] - b[0]);
Posted by: Guest on November-01-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language