标签:题目 nbsp stat for循环 size 使用 str 数字 home
1 /*31 【程序 31 数组逆序】
2 题目:将一个数组逆序输出。
3 程序分析:用第一个与最后一个交换。
4 */
5
6 /*分析
7 * 第一种方法:找到这个数组的中间下标,然后交换两端的数字,再顺序输出数组=====我觉得麻烦了
8 * 第二种方法:利用a.lengh找到数组的最后一个值,直接用递减的for循环,逆序输出
9 * */
10
11 package homework;
12
13 public class _31 {
14
15 public static void main(String[] args) {
16 // 初试化一个数组
17 int[] a= {1,2,3,4,5,6,7,8,9,10};
18 //使用for循环输出
19 for (int i = (a.length-1); i >=0 ; i--) {
20 System.out.print(a[i]+" ");
21 }
22 }
23
24 }
标签:题目 nbsp stat for循环 size 使用 str 数字 home
原文地址:https://www.cnblogs.com/scwyqin/p/12315067.html