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

a和b互换的2种方式

时间:2020-07-25 23:36:38      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:span   class   out   system   int   color   div   nbsp   方式   

int a=3;
        int b=2;

        a=a+b;
        b=a-b;
        a=a-b;

        System.out.println(a);
        System.out.println(b);
int a=3;
        int b=2;

        a=a^b;
        b=b^a;
        a=a^b;

        System.out.println(a);;
        System.out.println(b);

 

a和b互换的2种方式

标签:span   class   out   system   int   color   div   nbsp   方式   

原文地址:https://www.cnblogs.com/honghong75042/p/13375539.html

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