黑马程序员技术交流社区

标题: 登录界面 [打印本页]

作者: 119329    时间: 2016-5-30 15:56
标题: 登录界面
package com.heima.test;

import java.util.Scanner;

public class Demo_login {

        public static void main(String[] args) {

                Scanner sc = new Scanner(System.in);
                for (int i = 0; i < 3; i++) {
                        System.out.println("情输入用户名:");
                        String userName = sc.nextLine();
                        System.out.println("情输入密码:");
                        String passWord = sc.nextLine();

                        if ("admin".equals(userName) && "admin".equals(passWord)) {
                                System.out.println("欢迎" + userName + "登录");
                                break;
                        } else {
                                if (i == 2) {
                                        System.out.println("机会已经用完了,请明天再来!");
                                }else{
                                        System.out.println("用户名或是密码错误,还剩 " + (2-i)+ "次");
                                }
                        }
                }
        }
}





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