1067 试密码

#include<iostream>
#include<string>
using namespace std;
int main() {
	string pw;
	int n;
	cin>>pw>>n;
	getchar();
	while(1) {
		if(!n) {
			cout<<"Account locked\n";
			break;
		}
		string temp;
		getline(cin,temp);//坑,尝试密码不一定不含空格
		if(temp.size()==1&&temp=="#")
			break;
		if(temp!=pw)
			cout<<"Wrong password: "<<temp<<endl;
		else {
			cout<<"Welcome in\n";
			break;
		}
		n--;
	}
	return 0;
}

 

1067 试密码1067 试密码 江楚郎(已婚 发布了180 篇原创文章 · 获赞 14 · 访问量 9932 私信 关注
上一篇:安装Redis以及解决1067错误


下一篇:LightOJ - 1067 Combinations