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

实现任意两个数的互换

时间:2018-08-15 01:17:29      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:键盘录入   方法   交换   next   int()   输出   ring   数据   string   

import java.util.Scanner;
public static class{
    public  static void main(String[] args){
        //键盘录入两个int类型的数据,交换这两个变量的值,并输出交换后的值
        a = sc.nextInt();
        b = sc.nextInt();
        System.out.println(a);
        System.out.println(b);
        //方法一:借助第三个变量
        int temp = a;
        a = b;
        b = temp;
        System.out.println(a);
        System.out.println(b);
        //方法二:按位异或
        a = a^b;
        b = a^b;
        a = a^b;
        System.out.println(a);
        System.out.println(b);
        //方法三:运算,赋值
        a=(a+b)-(a=b);
        System.out.println(a);
        System.out.println(b);
        //方法四:模拟第三个变量(差)
        //假设a是a,b中较大的值
        a = a-b;   //a2 = a1-b1(差)      -1
        b = b+a;   //a3 = a1-b1-b1;       1
        a = b-a;
        System.out.println(a);
        System.out.println(b);
    }
}




实现任意两个数的互换

标签:键盘录入   方法   交换   next   int()   输出   ring   数据   string   

原文地址:https://www.cnblogs.com/itworkerlittlewrite/p/9479035.html

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