如何在 Java 中反转 int 数组
以下程序反转了一个 int 数组。
示例
public class Tester { public static void main(String[] args) { int[] numbers = {1,2,3,4,5}; //swap the numbers till the midpoint comes for (int start = 0, end = numbers.length - 1; start <= end; start++, end--) { int temp = numbers[start]; numbers[start]=numbers[end]; numbers[end]=temp; } for(int number: numbers){ System.out.print(number + " "); } } }
输出
5 4 3 2 1
广告