题目描述
某平台对新用户注册密码做如下限制:
①长度是8到16位,如果不符会给出提示“password should be 8 to 16 long"
②逐一判断密码字符,如果是纯数字就给出提示“password should not be entirely numeric”,如果密码符合以上要求就提示pass。
样例输入
1.123456
2.12345678
样例输出
1.password should be 8 to 16 long
2.password should not be entirely numeric
代码如下:
#include<bits/stdc++.h>
using namespace std;
int main(){string a;grtline(cin,a);int l=a.size();if(l<8||l>16){cout<<"password should be 8 to 16 long";return 0;}int cc=0;for(int i=0;i<l;i++){if(a[i]>='0'&&a[i]<='9') cc++;}if(cc==l) cout<<"password should not be entirely numeric";else cout<<"pass";return 0;
}