package com.bean;
//测试类
?? ?public class RegisterTest{ ?? ??? ?public static void main(String[] args) { ?? ??? ??? ?Register mr = new Register(); ?? ??? ??? ?mr.memberRegister(); ?? ??? ?} ?? ?}
//实体
package com.bean;
import java.util.Scanner;
public class Register { ? ? String name; ? ? String password; ? ? String rePassWord;
? ? public ?void memberRegister(){ ? ? ? ?? ? ? ? ? System.out.println("\t***欢迎进入注册系统***\n"); ? ? ? ? System.out.print("\t请输入用户名:"); ? ? ? ? Scanner input = new Scanner(System.in); ? ? ? ? name = input.next(); ? ? ? ? System.out.print("\t请输入密码:"); ? ? ? ? password = input.next(); ? ? ? ? System.out.print("\t请再次输入密码:"); ? ? ? ? rePassWord = input.next();
? ? ? ? while(name.length()<3 || (password.equals(rePassWord)==false) || (password.length()<6)){ ? ? ? ? ? ? if(name.length()<3||(password.length()<6)){ ? ? ? ? ? ? ? ? System.out.println("\t用户名长度不能小于3,密码长度不能小于6!"); ? ? ? ? ? ? } ? ? ? ? ? ? if (password.equals(rePassWord)==false){ ? ? ? ? ? ? ? ? System.out.println("\t两次输入的密码不相同!"); ? ? ? ? ? ? } ? ? ? ? ? ? System.out.print("\t请输入用户名:"); ? ? ? ? ? ? name = input.next(); ? ? ? ? ? ? System.out.print("\t请输入密码:"); ? ? ? ? ? ? password = input.next(); ? ? ? ? ? ? System.out.print("\t请再次输入密码:"); ? ? ? ? ? ? rePassWord = input.next(); ? ? ? ? } ? ? ? ? System.out.println("\t注册成功!"); ? ? } ? ? public static void main(String[] args) { ? ? ? ? Register mr = new Register(); ? ? ? ? mr.memberRegister(); ? ? } }
|