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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© continuer 中级黑马   /  2015-12-27 14:15  /  329 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

需求:程序启动后, 可以从键盘输入接收多个整数, 直到输入quit时结束输入. 把所有输入的整数倒序排列打印.
class Demo_TreeSet{
    public static void main(String[] args){
         Scanner sc = new Scanner(System.in)
         System.out.println("请输入整数:");
         TreeSet<Integer> it = new TreeSet<Integer>(new Comparator<Integer>(){
             public int compara(Integer i1 , Integer i2){
                  int  num = i2.comparaTo(i1);
                  return num == 0 ? 1 : num;
             }
         });
        while(true){
            String line = sc.nextLine();
            if("quit".equals(line)){
                  break;
             }
             Integer i = Integer.paserInt(line);
             ts.add(i);
         }
          for(Integer : i : ts){
               System.out.println(i);
         }
      }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马