码迷,mamicode.com
首页 > 其他好文 > 详细

数值交换

时间:2015-04-23 15:11:14      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

数组

 1 public class Swap3
 2 {
 3     public static void swap(int[] i)
 4     {
 5         int temp = i[0];
 6         i[0] = i[1];
 7         i[1] = temp;
 8     }
 9 
10     public static void main(String[] args)
11     {
12         int[] i = {1, 2};
13 
14         swap(i);
15 
16         System.out.println(i[0]);
17         System.out.println(i[1]);
18     }
19 }

 

数值交换

标签:

原文地址:http://www.cnblogs.com/daneres/p/4450175.html

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