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 3 correct%pw Correct@PW whatisthepassword! Correct%pw #输出样例1:
Wrong password: correct%pw Wrong password: Correct@PW Wrong password: whatisthepassword! Account locked输入样例2:
cool@gplt 3 coolman@gplt coollady@gplt cool@gplt try again #输出样例2:
Wrong password: coolman@gplt Wrong password: coollady@gplt Welcome in
#include <iostream>
#include <vector>
#include <stdio.h>
#include <algorithm>
#include <iomanip>
#include <string>
#include <cstdio>
#include <string.h>
#include <set>
#include <cmath>
using namespace std;
int main()
{
//set<string> s1;
string temp;
int n,cnt=0;
string Password;
cin>>Password>>n;
getchar();
while(1){
getline(cin,temp);
if(temp!="#"){
cnt++;
}else break;
if(temp==Password && cnt<=n){
cout << "Welcome in";
break;
}else if(cnt<=n && temp!=Password){
cout<<"Wrong password: "<<temp<<endl;
if(cnt==n){
cout<<"Account locked";break;
}
}
}
/*s1.insert(Password);
string temp;
int i=0;
while(getline(cin,temp) && temp!="#"){
if(s1.find(temp)==s1.end()){
i++;
cout<<"Wrong password: "<<temp<<endl;
if(i==n){
cout<<"Account locked";break;
}
}else if(s1.find(temp)!=s1.end()){
cout<<"Welcome in";break;
}
}*/
return 0;
}
本文介绍了一个简单的密码验证功能实现,当用户尝试登录时忘记密码,系统会限制尝试次数并在超过限定次数后锁定账户。通过输入正确的密码或达到最大错误尝试次数来演示不同的输出情况。
4428

被折叠的 条评论
为什么被折叠?



