首页 > 360笔试9.11第二题代码,求第一题代码分享
头像
312的LG
编辑于 2020-09-12 09:35
+ 关注

360笔试9.11第二题代码,求第一题代码分享

第一题 实在没有思路,直接 cout << 3; 骗了18%
第二题逐个遍历,在输入上花的时间比较多一点,最后还是AC了,以下是我第二题的代码,求大佬分享一下第一题的代码
#include<iostream>
#include<string>
#include<vector>
using namespace std;

int main() {
	string s;
	vector<string> res;
	while (cin >> s) {
		res.push_back(s);
		if (cin.get() == '\0')
			break;
	}
	int len = res.size();
	for (int i = 0; i < len; i++) {
		int num = res[i].size();
		string tem = res[i];
		int flag = 0;
		int flag1 = 0;
		int flag2 = 0;
		int flag3 = 0;
		if (num >= 8) {
			for (int j = 0; j < num; j++) {
				if ((tem[j] >= 'a') && (tem[j] <= 'z') ){
					flag++;
					continue;
				}
				else if ((tem[j] >= 'A') && (tem[j] <= 'Z')) {
					flag1++;
					continue;
				}
				else if ((tem[j] >= '0') && (tem[j] <= '9')) {
					flag2++;
					continue;
				}
				else  {
					flag3++;
					continue;
				}
				if ((flag > 0 )&& (flag1 > 0 )&& (flag2 > 0 )&& (flag3 > 0)) {
					cout << "Ok" << '\n';
					break;
				}
			}
			if ((flag > 0 )&& (flag1 > 0) && (flag2 > 0 )&& ( flag3 > 0))
				cout << "Ok" << '\n';
			else
				cout << "Irregular password" << '\n';
		}
		else
			cout << "Irregular password" << '\n';
	}
	return 0;
}



全部评论

(4) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐