Discuss / Java / 练习题

练习题

Topic source

追风少年

#1 Created at ... [Delete] [Delete and Lock User]
		int[] ns = { 1, 4, 9, 16, 25 };
        for (int i = ns.length - 1; i >= 0; i--) {
            System.out.println(ns[i]);
        }

  • 1

Reply