PTA乙级 (1029 旧键盘 (20分))
Posted jianqiao123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA乙级 (1029 旧键盘 (20分))相关的知识,希望对你有一定的参考价值。
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分))的主要内容,如果未能解决你的问题,请参考以下文章
PTA 乙级 1033 旧键盘打字 (20分) Python