题解 2860: 字符串判等

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符串判等(C++)

摘要:解题思路: 你可以使用 C++ 标准库中的函数 tolower 和 isspace 来忽略大小写和空格。 具体来说,你可以对每个字符使用 tolower 函数将它转换为小写字母,并使用 isspa……

记录相同字符的必会想法

摘要:解题思路:字符串有空格 用getline输入 然后统计相同字符的个数 比较一下注意事项:这里大小写忽略 统一一下即可参考代码:#include<bits/stdc++.h>using namespac……

题解 2860: 字符串判等

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    string s,s1="",ss,ss1=""; ……

2860: 字符串判等

摘要:解题思路:注意事项:参考代码:    #include <bits/stdc++.h>    using namespace std;    typedef long long ll;    int ……

2860: 字符串判等

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){string s,snew;getline(cin,s);f……

字符串判等,,,,,,

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){     // 定义四个字符串变量,用于存储输入和处……