python 字符串对比解法(ascll码值)
摘要:S1=input()S2=input()if len(S1)!=len(S2): print(1)else: a=0 b=0 c=0 for i in range(len……
蓝桥杯基础练习VIP-字符串对比 题解
摘要:解题思路:先比较长度,再比较内容。不区分大小写的条件可以运用 lower参考代码:str1=input()
str2=input()
if len(str1)!= len(str2):
……
蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:如果两个字符串的长度不相等,输出 "1"。如果两个字符串的长度相等,并且在区分大小写的情况下完全相等,输出 "2"。如果两个字符串的长度相等,但在不区分大小写的情况下相等,输出 "3"。如果……
蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>#include<math.h>int main(){ int i……
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码)
摘要:这题就4种情况:按照对应的情况输出即可。
```cpp
#include
#include
#include
using namespace std;
string tolower(s……
蓝桥杯基础练习VIP-字符串对比-题解(C++代码)
摘要:```cpp
#include
using namespace std;
int main(){
string a,b;
cin>>a>>b;
int a_len……
蓝桥杯基础练习VIP-字符串对比 (Java代码)
摘要:解题思路:注意事项:参考代码:import java.util.*;
import java.math.*;
public class Main {
public static void ma……
1466: 蓝桥杯基础练习VIP-字符串对比
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int gx(string str,int n,string str1,in……