提交 7350680a 编写于 作者: 小刘28's avatar 小刘28 💬

style:优化代码格式;

上级 ae530395
......@@ -71,14 +71,44 @@ public class LoginV {
* 注册
* */
private void regi(){
System.out.println("注册");
while (true){
System.out.println("-----输入#号退出当前操作-----");
Scanner sc = new Scanner(System.in);
System.out.println("请输入账号:");
String account = sc.nextLine();
if (inteOper(account)){
break;
}
System.out.println("请输入密码:");
String password = sc.nextLine();
if (inteOper(password)){
break;
}
System.out.println("账号:" + account);
System.out.println("密码:" + password);
}
}
/*
* 找回密码
* */
private void retrPass(){
System.out.println("找回密码");
while (true){
System.out.println("-----输入#号退出当前操作-----");
Scanner sc = new Scanner(System.in);
System.out.println("请输入账号:");
String account = sc.nextLine();
if (inteOper(account)){
break;
}
System.out.println("请输入邮箱:");
String email = sc.nextLine();
if (inteOper(email)){
break;
}
System.out.println("账号:" + account);
System.out.println("邮箱:" + email);
}
}
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册