首页 > 其他 > 详细

PTA乙级 (1029 旧键盘 (20分))

时间:2020-01-31 22:21:38      阅读:118      评论:0      收藏:0      [点我收藏+]

1029 旧键盘 (20分)

https://pintia.cn/problem-sets/994805260223102976/problems/994805292322111488

#include <iostream>
#include <cctype>
using namespace std;
int main()
{
	string str1,str2,ans;
	cin>>str1>>str2;
	for(int i=0;i<str1.length();i++)
	   if((str2.find(str1[i])==string::npos)&&ans.find(toupper(str1[i]))==string::npos)
	    ans+=toupper(str1[i]);
	cout<<ans<<endl;
	return 0;     
}

PTA乙级 (1029 旧键盘 (20分))

原文:https://www.cnblogs.com/jianqiao123/p/12246863.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!