1067 试密码 测试点5


易错点

审题!题干中指出输入不包含空格,但没有对输出做出更多说明,因此不能想当然认为输出不包含空格,必须考虑输出包含空格的情况!

代码

#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
int main()
{
	string password;
	int n;
	string s;
	int cnt=0;
	cin>>password;
	cin>>n;
	getchar();
	while(true){
		getline(cin,s,'/n');
		if(s=="#"){
			break;
		}
		else if(s==password){
			cout<<"Welcome in";
			break;
		}
		else if(s!=password){
			cout<<"Wrong password: "<<s<<endl;
			cnt++;
			if(cnt==n){
				cout<<"Account locked";
				break;
			}
		}
	}
	return 0;
}

原创文章,作者:dweifng,如若转载,请注明出处:https://blog.ytso.com/273711.html

(0)
上一篇 2022年7月12日
下一篇 2022年7月12日

相关推荐

发表回复

登录后才能评论