蓝桥杯基础练习VIP-字符串对比-题解(Java代码)100% 摘要:### 引用方法,暴力破解 ```java Scanner sc = new Scanner(System.in); String str1 = sc.nextLine(); …… 题解列表 2024年01月11日 0 点赞 0 评论 78 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:如果两个字符串的长度不相等,输出 "1"。如果两个字符串的长度相等,并且在区分大小写的情况下完全相等,输出 "2"。如果两个字符串的长度相等,但在不区分大小写的情况下相等,输出 "3"。如果…… 题解列表 2023年11月29日 0 点赞 0 评论 98 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比(C++简单解) 摘要: ```cpp #include #include #include using namespace std; int checkRelation(const string& s…… 题解列表 2023年07月31日 0 点赞 0 评论 97 浏览 评分:9.9
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <ctype.h>#define maxn 100char s1[maxn],…… 题解列表 2023年04月16日 0 点赞 0 评论 47 浏览 评分:0.0
字符串对比 摘要:解题思路:# 输入两个字符串 str1 = input() str2 = input() # 先比较两个字符串长度,如果长度不同,返回1 # 如果长度相同,再比较两个字符串是否相等,如果相等,…… 题解列表 2023年03月15日 0 点赞 0 评论 88 浏览 评分:9.9
蓝桥杯基础练习VIP-字符串对比 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2023年03月15日 0 点赞 0 评论 48 浏览 评分:0.0
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…… 题解列表 2023年02月12日 0 点赞 0 评论 57 浏览 评分:0.0
1466————蓝桥杯基础练习VIP-字符串对比 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年02月06日 0 点赞 0 评论 90 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:def judge(m,n): if len(m)!=len(n): return 1 elif m==n: return 2 …… 题解列表 2023年01月20日 0 点赞 0 评论 52 浏览 评分:9.9
字符串对比,100%通过!!! 摘要:解题思路:注意事项:参考代码:a = input()b = input()if len(a) != len(b): print(1)elif a == b: print(2)elif a.…… 题解列表 2023年01月19日 0 点赞 0 评论 70 浏览 评分:0.0