码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-31 23:04:56      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:cin   pos   upper   div   type   ==   ret   find   ++   

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分))

标签:cin   pos   upper   div   type   ==   ret   find   ++   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!