易错点
审题!题干中指出输入不包含空格,但没有对输出做出更多说明,因此不能想当然认为输出不包含空格,必须考虑输出包含空格的情况!
代码
#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