java吧 关注:1,237,942贴子:12,710,224
  • 14回复贴,共1

第三题怎么写。刚学。用最简单得

只看楼主收藏回复

第三题怎么写。刚学。用最简单得语句


IP属地:陕西来自Android客户端1楼2017-07-18 19:51回复
    用冒泡排序


    来自Android客户端2楼2017-07-18 20:08
    回复
      public class Main
      {
      public static void main(String[] args)
      {
      int x = 15;
      int y = 13;
      int z = 121;
      if(x>y){
      int t = x;
      x = y;
      y = t;
      }
      if(x>z){
      int t = x;
      x = z;
      z = t;
      }
      if(y>z){
      int t = y;
      y = z;
      z = t;
      }
      System.out.println(x+""+y+""+z);
      }
      }


      IP属地:福建来自Android客户端3楼2017-07-18 20:19
      收起回复


        IP属地:陕西来自Android客户端4楼2017-07-19 18:16
        回复
          java没有 collection.sort() 这样的函数吗?


          5楼2017-07-19 18:18
          收起回复
            冒泡排序


            6楼2017-07-19 19:20
            回复