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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© LARK 中级黑马   /  2016-10-19 18:55  /  502 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public static void main(String[] args) {
                System.out.println("****************************************");
                System.out.println("*                                      *");
                System.out.println("*                                      *");
                System.out.println("*        欢迎你来到0912基础班                                   *");
                System.out.println("*                                      *");
                System.out.println("*                                      *");
                System.out.println("****************************************");
                Collection<Student> c = new ArrayList<>();
                Scanner sc = new Scanner(System.in);
                while(true){
                        System.out.println(" 请选择功能 :    注册(A)      登陆(B)");
                        String s = sc.nextLine();
                        if("a".equalsIgnoreCase(s)){
                                System.out.println("请输入注册id和用户名,格式为:id-name");
                                String[] arr1 = sc.nextLine().split("-");
                                System.out.println("注册成功,目前的用户有:");
                                c.add(new Student(Integer.parseInt(arr1[0]),arr1[1]));
                                Iterator<Student> it = c.iterator();
                                while(it.hasNext()){
                                        System.out.println("          " + it.next());
                                }
                        }else if ("b".equalsIgnoreCase(s)){
                                System.out.println("请输入登陆id和用户名,格式为:id-name");
                                String[] arr2 = sc.nextLine().split("-");
                                Student temp = new Student(Integer.parseInt(arr2[0]),arr2[1]);
                                if(c.contains(temp)){
                                        System.out.println("登陆成功");
                                        break;
                                }else{
                                        System.out.println("登陆失败");
                                }
                        }
                }
        }
}

0 个回复

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