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 279 views
1 answer 222 views
1 answer 203 views
203 views asked Oct 6, 2016 by avibootz
1 answer 183 views
183 views asked Oct 6, 2016 by avibootz
1 answer 180 views
1 answer 224 views
224 views asked Oct 5, 2016 by avibootz
1 answer 219 views
219 views asked Oct 5, 2016 by avibootz
...