用c语言写,把7个同学的口令存入在一个指针数组中,要求用户输入用户号和口令后,程序能判断其口令输入是否正确。如果口令正确,程序运行情况示例: please input No:5 please input password:Water It’s right ! welcome… 如果口令不对,应允许再重新输入,如果连续三次口令输入均为错误,显示“error!”后退出。 请完成以下程序,实现所要求的功能。 void main() { char *password[]={"Cat","Mouse","Dog","Sugar","Water","Meat","Steel"}; }
时间: 2023-06-06 14:05:45 浏览: 58
C语言程序设计第4章数组和指针
void main() {
char *password[] = {"Cat", "Mouse", "Dog", "Sugar", "Water", "Meat", "Steel"}; // 建立口令数组
int no, count = 0;
char inputPass[10]; // 创建用户输入口令的数组
while (1) {
printf("please input No:");
scanf("%d", &no); // 让用户输入号码
printf("please input password:");
scanf("%s", inputPass); // 让用户输入口令
if (strcmp(inputPass, password[no-1]) == 0) { // 判断口令是否正确
printf("It's right ! welcome...\n");
break;
}
else {
count++; // 错误次数加一
if (count == 3) { // 错误次数达到三次,退出程序
printf("Error! \n");
break;
}
printf("Incorrect password! Please try again.\n");
}
}
}
阅读全文