填空题

NOIP2017 阅读程序 

1.

#include<bits/stdc++.h>
using namespace std;
int main() {
	int t[256];
	string s;
	int i;
	cin >> s;
	for (i = 0; i < 256; i++) t[i] = 0;
	for (i = 0; i < s.length(); i++) t[s[i]]++;
	for (i = 0; i < s.length(); i++)
		if (t[s[i]] == 1) {
			cout << s[i] << endl;
			return 0;
		}
	cout << "no" << endl;
	return 0;
}

输入:xyzxyw

输出:_________

发表评论

登录 后再回复