码迷,mamicode.com
首页 > 编程语言 > 详细

数组的倒置

时间:2017-01-01 16:20:17      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:log   style   blog   oid   方法   res   []   get   package   

直接贴代码

 

 1 package com.cz.test;
 2 
 3 public class ArrayRevese {
 4 
 5     //数组倒置方法
 6     public static int [] getR(int arr[]){
 7         //首先定义一个新数组
 8         int resver[] =new int[arr.length];
 9         //拿出第一个值,把他放在新数组的最后一个位置
10         for(int i=0;i<arr.length;i++){
11             resver[arr.length-1-i]=arr[i];
12         }
13         
14         return resver;
15     }
16     
17     
18     public static void main(String[] args) {
19         int [] s={1,2,3,4};
20         int ss[]=getR(s);
21         for (int i : ss) {
22             System.out.println(i);
23         }
24     }
25 }

 

数组的倒置

标签:log   style   blog   oid   方法   res   []   get   package   

原文地址:http://www.cnblogs.com/javaweb2/p/6241103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!