编写题解 1466: 蓝桥杯基础练习VIP||不用strcmp; 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[2][11] = { 0 }; gets(ar…… 题解列表 2024年03月26日 0 点赞 0 评论 79 浏览 评分: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 评论 58 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string a,b; cin>>a>>b; int a_len…… 题解列表 2020年03月30日 0 点赞 0 评论 347 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:如果两个字符串的长度不相等,输出 "1"。如果两个字符串的长度相等,并且在区分大小写的情况下完全相等,输出 "2"。如果两个字符串的长度相等,但在不区分大小写的情况下相等,输出 "3"。如果…… 题解列表 2023年11月29日 0 点赞 0 评论 99 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main { public static void ma…… 题解列表 2018年10月14日 0 点赞 1 评论 370 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <deque>#include <string>#include <iterator>#include <nume…… 题解列表 2018年02月01日 0 点赞 0 评论 1567 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 迷惑的20%,以后再说吧() 摘要:#include #include #include #include int main() { char a[1000], b[1000]; gets(a); gets…… 题解列表 2020年02月22日 0 点赞 0 评论 246 浏览 评分:0.0
字符串对比。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>int main(){ c…… 题解列表 2021年04月10日 0 点赞 0 评论 134 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码)STL转大小写函数介绍!!! 重磅惊喜!!别错过! 摘要:解题思路: 利用STL的 transform()函数 可以把字符串全部转成大写或者小写,对第三的判断非常简单!!注意事项: transform()的参数介绍 (原字符串起始,原字符串结束,新字符…… 题解列表 2018年11月29日 0 点赞 0 评论 533 浏览 评分:0.0
我回来了 (Java代码) 摘要:解题思路:直接代码,很简单啊注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(){ Sc…… 题解列表 2018年05月03日 0 点赞 0 评论 629 浏览 评分:0.0