题目描述:
当你试图登录某个系统却忘了密码时,系统一般只会允许你尝试有限多次,当超出允许次数时,账号就会被锁死。本题就请你实现这个小功能。 输入格式: 输入在第一行给出一个密码(长度不超过 20 的、不包含空格、Tab、回车的非空字符串)和一个正整数 N(≤ 10),分别是正确的密码和系统允许尝试的次数。随后每行给出一个以回车结束的非空字符串,是用户尝试输入的密码。输入保证至少有一次尝试。当读到一行只有单个 # 字符时,输入结束,并且这一行不是用户的输入。 输出格式: 对用户的每个输入,如果是正确的密码且尝试次数不超过 N,则在一行中输出 Welcome in,并结束程序;如果是错误的,则在一行中按格式输出 Wrong password: 用户输入的错误密码;当错误尝试达到 N 次时,再输出一行 Account locked,并结束程序。 输入样例 1: Correct%pw 3 correct%pw [email protected] whatisthepassword! Correct%pw # 输出样例 1: Wrong password: correct%pw Wrong password: [email protected] Wrong password: whatisthepassword! Account locked 输入样例 2: [email protected] 3 [email protected] [email protected] [email protected] try again # 输出样例 2: Wrong password: [email protected] Wrong password: [email protected] Welcome in
坑点指南:
题目本身没有什么难度,但是以下的坑点值得好好考虑 // 要点:1. 题目中的密码没有空格,但是用户输入时可能会键入空格 // 2. 标准密码的长度是20, 但是用户键入的密码可能会大于20
本人AC代码:
// 1067 试密码 // 要点:1. 题目中的密码没有空格,但是用户输入时可能会键入空格 // 2. 标准密码的长度是20, 但是用户键入的密码可能会大于20 # include <stdio.h> # include <stdlib.h> # include <string.h> int main(void) { char PassW[22], temp[52]; int num; // 读入标准密码以及允许尝试的次数 scanf("%s %d",PassW,&num); getchar(); while (1) { gets(temp); num--; // 如果仅输入一个# 则停止输入 if (0 == strcmp("#", temp)) { break; } // 比较字符串是否相等 // 如果相等 if (0 == strcmp(PassW, temp) && num>=0) { printf("Welcome in"); // 结束循环 break; } else if (0 != strcmp(PassW, temp) && num>=0) { printf("Wrong password: %s\n",temp); // 次数用尽,账户锁定 // printf("num === %d\n",num); if (0 == num) { printf("Account locked"); break; } } } return 0; }
RRR
原文地址:https://www.cnblogs.com/Robin5/p/11216580.html
时间: 2024-10-19 19:41:30