首页 > 学院 > 开发设计 > 正文

PAT乙级1067

2019-11-06 07:07:14
字体:
来源:转载
供稿:网友

1067. 试密码(20)

时间限制400 ms内存限制65536 kB代码长度限制8000 B判题程序Standard作者CHEN, Yue

当你试图登录某个系统却忘了密码时,系统一般只会允许你尝试有限多次,当超出允许次数时,账号就会被锁死。本题就请你实现这个小功能。

输入格式:

输入在第一行给出一个密码(长度不超过20的、不包含空格、Tab、回车的非空字符串)和一个正整数N(<= 10),分别是正确的密码和系统允许尝试的次数。随后每行给出一个以回车结束的非空字符串,是用户尝试输入的密码。输入保证至少有一次尝试。当读到一行只有单个#字符时,输入结束,并且这一行不是用户的输入。

输出格式:

对用户的每个输入,如果是正确的密码且尝试次数不超过N,则在一行中输出“Welcome in”,并结束程序;如果是错误的,则在一行中按格式输出“Wrong passWord: 用户输入的错误密码”;当错误尝试达到N次时,再输出一行“Account locked”,并结束程序。

输入样例1:
Correct%pw 3correct%pwCorrect@PWwhatisthepassword!Correct%pw#输出样例1:
Wrong password: correct%pwWrong password: Correct@PWWrong password: whatisthepassword!Account locked输入样例2:
cool@gplt 3coolman@gpltcoollady@gpltcool@gplttry again#输出样例2:
Wrong password: coolman@gpltWrong password: coollady@gpltWelcome in
#include<cstdio>#include<cstring>char s[25],s1[100];//题目说正确的密码长度不超过20但没有说错误的密码不超过!!!数组开大点int N;int main(){	scanf("%s%d", s, &N);	getchar();	int count = 0;	while (count < N)	{		gets_s(s1);//提交时改为gets即可,这里注意下题目说没有空格符但没有说没有空白符		if (strcmp(s1, "#") == 0)		{			return 0;		}		else if (strcmp(s1,s) == 0)		{			PRintf("Welcome in"); return 0;		}		else		{			printf("Wrong password: %s/n", s1);			//count++;这个地方加也行		}		count++;	}	printf("Account locked/n");	return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表