黑马程序员技术交流社区

标题: 编写程序,循环接收用户从键盘输入多个字符串 直到... [打印本页]

作者: feimingxuan    时间: 2016-6-15 01:30
标题: 编写程序,循环接收用户从键盘输入多个字符串 直到...
ublic class Demo_3 {

        public static void main(String[] args) {

                Scanner sc = new Scanner(System.in);

                System.out.println("请输入字符串");
                while (true) {
                        String asd = sc.nextLine();
                        String str = asd;
                        if (str.equals("end")) {
                                System.out.println("嘿嘿 结束");
                                break;
                        } else {
                                char[] chars = str.toCharArray();
                                for (int i = chars.length; i == 0; i--) {
                                        Arrays.sort(chars);
                                        System.out.println(chars[i]);
                                }

                        }
                }
        }

}







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2