• 实现任意两个数的互换


    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);
        }
    }




  • 相关阅读:
    es6
    ES6
    ES6
    css3
    滚动穿透的6种解决方案【已自测】
    css特效
    css布局
    css布局
    js
    【消灭代办】第5周
  • 原文地址:https://www.cnblogs.com/itworkerlittlewrite/p/9479035.html
Copyright © 2020-2023  润新知