概述
package day03;
/*
* 1)用户在控制台输入1 提示请你输入注册的卡号和密码
* 2)用户在控制台输入2 提示登录
*/
import java.util.Arrays;
import java.util.Scanner;
public class test20 {
public static void main(String[] args) {
String[] ka = new String[1]; // 存入注册的卡号
String[] pw = new String[1]; // 存入注册的密码
String[] yhka = new String[1]; // 存入登录的卡号
String[] yhpw = new String[1]; // 存入登录的密码
int count = 3; // 登录验证的次数只有3次
Scanner scan = new Scanner(System.in);
System.out.println("1.注册 2.登录 " + "n" + "请你输入1或者2");
while (true) {
int input = scan.nextInt();
switch (input) {
case 1:
System.out.println("请你输入注册的卡号");
ka[0] = scan.next();
System.out.println("请你输入注册的密码");
pw[0] = scan.next();
System.out.println("卡号:" + Arrays.toString(ka));
System.out.println("密码:" + Arrays.toString(pw));
break;
case 2:
System.out.println("请你输入登录的卡号");
for (;;) {
yhka[0] = scan.next();
if (yhka[0].equals(ka[0])) {
System.out.println("卡号正确,请你输入密码");
break;
} else {
System.out.println("卡号不匹配,请重新输入卡号");
}
}
while (true) {
yhpw[0] = scan.next();
if (yhpw[0].equals(pw)) {
System.out.println("登录密码正确,成功登录");
break;
} else {
count--;
if (count == 0) {
System.out.println("你今日次数已用尽,请于24小时后再试");
break;
}
System.out.println("密码不匹配,你还有" + count + "次验证机会");
}
}
}
}
}
}
最后
以上就是大方摩托为你收集整理的简单java的for、while循环加上switch分支语句案例(用户在控制台输入1 提示输入注册卡号与密码,输入2 提示输入登录卡号与密码)的全部内容,希望文章能够帮你解决简单java的for、while循环加上switch分支语句案例(用户在控制台输入1 提示输入注册卡号与密码,输入2 提示输入登录卡号与密码)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复