1466————蓝桥杯基础练习VIP-字符串对比 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年02月06日 0 点赞 0 评论 132 浏览 评分: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 评论 109 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2023年03月15日 0 点赞 0 评论 69 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <ctype.h>#define maxn 100char s1[maxn],…… 题解列表 2023年04月16日 0 点赞 0 评论 66 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:如果两个字符串的长度不相等,输出 "1"。如果两个字符串的长度相等,并且在区分大小写的情况下完全相等,输出 "2"。如果两个字符串的长度相等,但在不区分大小写的情况下相等,输出 "3"。如果…… 题解列表 2023年11月29日 0 点赞 0 评论 130 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(Java代码)100% 摘要:### 引用方法,暴力破解 ```java Scanner sc = new Scanner(System.in); String str1 = sc.nextLine(); …… 题解列表 2024年01月11日 0 点赞 0 评论 115 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int gx(string str,int n,string str1,in…… 题解列表 2024年01月21日 0 点赞 0 评论 94 浏览 评分:0.0
字符串对比-JAVA 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年03月20日 0 点赞 0 评论 116 浏览 评分:0.0
编写题解 1466: 蓝桥杯基础练习VIP||不用strcmp; 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[2][11] = { 0 }; gets(ar…… 题解列表 2024年03月26日 0 点赞 0 评论 129 浏览 评分:0.0
1466-c语言题解 摘要:```c #include #include #include #define MAX 11 int main() { char s1[MAX], s2[MAX]; …… 题解列表 2024年08月26日 0 点赞 0 评论 71 浏览 评分:0.0