其他分享
首页 > 其他分享> > 1067 试密码

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;
}

 

江楚郎(已婚 发布了180 篇原创文章 · 获赞 14 · 访问量 9932 私信 关注

标签:私信,pw,int,1067,密码,文章,include,cout
来源: https://blog.csdn.net/qq_40991687/article/details/103963487