黑马程序员技术交流社区

标题: 模拟登录注册3次方法分享 [打印本页]

作者: q312092921    时间: 2016-3-28 22:48
标题: 模拟登录注册3次方法分享

  1. import java.util.Scanner;
  2. class SignUp {
  3.         public static void main(String[] args) {
  4.                    for(int a=1;a<=3;a++){
  5.                         Scanner sc = new Scanner(System.in);
  6.                         System.out.println("请输入用户名:");
  7.                         int username=sc.nextInt();
  8.                         System.out.println("请输入密码:");
  9.                         int password=sc.nextInt();
  10.                                 if((username==1234) && (password==4567)) {
  11.                                         for(int i=1; i<=5; i++) {
  12.                                                 for(int j=0; j<=i; j++) {
  13.                                                 System.out.print("*");
  14.                                         }
  15.                                                 System.out.println();        
  16.                                  }
  17.                                  break;
  18.                            }else{
  19.                                 System.out.println("您输入的账号密码有误"+"您还有"+(3-a)+"次机会");
  20.                         }
  21.                         
  22.                 }
  23.         }
  24. }
复制代码







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