A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© swch1991 中级黑马   /  2015-10-10 13:28  /  346 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本人是java新人,对目前的数组冒泡排序有点迷糊
  1. package imooc;
  2. public class ceshi
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 //定义数组,保存成绩
  7.                 int[] scores = {89,-23,64,91,119,52,73};
  8.                 //调用方法
  9.         shuzu(scores);
  10.         print(scores);
  11.         }
  12.         public static void shuzu(int[] scores)  //成绩排序
  13.         {
  14.                 for(int i=0;i<scores.length-1;i++)
  15.                 {
  16.                         for(int j=0;j<scores.length-i-1;j++)
  17.             {
  18.                             if(scores[j]>scores[j+1])
  19.                             {
  20.                                      int x=scores[j];
  21.                                      scores[j]=scores[j+1];
  22.                                      scores[j+1]=x;
  23.                             }
  24.             }
  25.                 }
  26.         }
  27.         public static void print(int[] scores) //循环遍历输出数组
  28.         {
  29.                 for(int xs=0;xs<scores.length;xs++)
  30.                 {
  31.                         System.out.println(scores);
  32.                 }
  33.         }
  34. }
复制代码
         哪里出问题了?

2 个回复

倒序浏览
最后的输出语句忘记加角标了
回复 使用道具 举报
System.out.println(scores);这里你是想打印什么。这样打印应该是哈希值吧
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马