1.问题
1 T' q, A A0 k4 _ 日常生活中我们会遇到许多需要密码来登录账户的场景,如何使用Java来创建此类登录代码呢?( y7 \5 ~# o/ z0 d3 c
2.方法
3 S0 N/ g5 B: M: G' A- |$ E
- import java.util.Scanner;
- public static void main (String[] args) {
- Scanner sc = new Scanner (System.in);
- int count = 3;
- while(count›0){
- System.out.println(“请输入密码: ");
- String password = sc.nextLine();
- if(password.equals(“123456” )){
- System.out.printin(“输入正确,登录成功 ");}
- else{
- count --;
- System.out.println(“输入错误,”+“你还有"+count+“次机会");
- }
- }
- }
3.结语9 e4 }7 u; r) b! I) k+ R$ n% o! h
针对登录系统的使用问题,我们发现是可以使用Java来进行实现,并设定输错密码3次自动锁定的保护程序,证明此方法是有效且实用的。 |