美文网首页
交换a、b的值,Interesting

交换a、b的值,Interesting

作者: 熊猫的雄 | 来源:发表于2018-09-04 16:02 被阅读0次

    不用中间值进行a、b值进行交换,仅限数值型变量。

    public static void main(String[] args) {
            int a=1;
            int b=2;
            a=a+b;
            b=a-b;
            a=a-b;
                    System.out.println("a:"+a);
            System.out.println("b:"+b);
        }
    
    结果

    相关文章

      网友评论

          本文标题:交换a、b的值,Interesting

          本文链接:https://www.haomeiwen.com/subject/nzagwftx.html