PTA乙级 (1014 福尔摩斯的约会 (20分)、(英文字母转换成数字类型))
1014 福尔摩斯的约会 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805308755394560 英文字母转换成数字类型: 代码: #include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <algorithm> using namespace std; int main() { int length1,length2,count=0; string str1,str2,str3,str4; cin>>str1>>str2>>str3>>str4; int len1=str1.length(); int len2=str2.length(); int len3=str3.length(); int len4=str4.length(); if(len1<len2) length1=len1;else length1=len2; if(len3<len4) length2=len3;else length2=len4; for(int i=0;i<length1;i++) { if((str1[i]==str2[i])&&(str1[i]>='A'