1. 程式人生 > >實用類String.length應用-使用者名稱密碼長度

實用類String.length應用-使用者名稱密碼長度

 1 package demo3;
 2 
 3 import java.util.Scanner;
 4 
 5 //會員註冊,使用者名稱長度不小於3,密碼長度不小於6,兩次輸入的密碼必須相同
 6 public class Register {
 7     public static void main(String[] args) {
 8         Scanner input=new Scanner(System.in);
 9         do {
10             boolean isRight=false;
11             System.out.print("請輸入使用者名稱:");
12 String userName=input.next(); 13 System.out.print("請輸入密碼:"); 14 String pwd=input.next(); 15 System.out.print("請再次輸入密碼:"); 16 String nextPwd=input.next(); 17 18 if(userName.length()<3 || pwd.length()<6) { 19
System.out.println("使用者名稱長度不能小於3或密碼長度不能小於6!"); 20 }else { 21 if(pwd.equals(nextPwd)) { 22 System.out.println("註冊成功!請牢記使用者名稱和密碼。"); 23 isRight=true; 24 }else { 25 System.out.println("兩次輸入的密碼不相同!");
26 } 27 } 28 if(isRight) { 29 break; 30 } 31 }while(true); 32 33 } 34 }