How to sort a part of float Array in Java

1 Answer

0 votes
package javaapplication1;

import java.util.Arrays;

public class JavaApplication1 {

    public static void main(String[] args) {

        float[] fArr = new float[]{3.14f, 1.13f, 2.87f, 5.13f, 7.13f, 1.10f};

        Arrays.sort(fArr, 0, 5);

        for (int i = 0; i < fArr.length; i++) 
            System.out.print(fArr[i] + " ");
     
    }
}
 
/*

run:

1.13 2.87 3.14 5.13 7.13 1.1

*/

 



answered Oct 6, 2016 by avibootz

Related questions

2 answers 276 views
1 answer 219 views
1 answer 200 views
200 views asked Oct 6, 2016 by avibootz
1 answer 180 views
180 views asked Oct 6, 2016 by avibootz
1 answer 176 views
1 answer 217 views
217 views asked Oct 5, 2016 by avibootz
1 answer 216 views
216 views asked Oct 5, 2016 by avibootz
...