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 253 views
1 answer 204 views
1 answer 194 views
194 views asked Oct 6, 2016 by avibootz
1 answer 170 views
170 views asked Oct 6, 2016 by avibootz
1 answer 165 views
1 answer 201 views
201 views asked Oct 5, 2016 by avibootz
1 answer 201 views
201 views asked Oct 5, 2016 by avibootz
...