#c++字符串对比 transform(s.begin(),s.end(),s.begin(),::toupper); //全部转成大写
摘要:```cpp
#include
using namespace std;
int main()
{
string s,ss;
cin>>s>>ss;
if(s.size()!=ss……
编写题解 1466: 蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <string>
using namespace std;
int main(){
string st……
蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:通过代码实现相应情况注意事项:参考代码:#include"iostream"#include<cstring>#include<string>using namespace std;stri……
1466: 蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int gx(string str,int n,string str1,in……
蓝桥杯基础练习VIP-字符串对比(简洁版)
摘要:```cpp
#include
using namespace std;
string a,b;
int panduan(string a,string b)
{
if(a.size()……
蓝桥杯基础练习VIP-字符串对比-题解(C++代码)
摘要:参考代码:#include<iostream>
#include<string>
using namespace std;
int main()
{
string str1, str2……
蓝桥杯基础练习VIP-字符串对比-题解(C++代码)
摘要:```cpp
#include
using namespace std;
int main(){
string a,b;
cin>>a>>b;
int a_len……
c++记录transform
摘要:记录transform
` transform(s1.begin(),s1.end(),s1.begin(),::tolower);
transform(s2.begin(),s2.end()……