C++版本——常规思路 摘要: #include using namespace std; int main() { string a, b; cin >> …… 题解列表 2021年04月15日 0 点赞 0 评论 145 浏览 评分:0.0
优质题解 菜鸟的思路 摘要:解题思路: 一、先划分大的框架,从整体看 分为length相同和不相同。 二、lengthb不相同只有一种情况,那就是第1种情况。 三、length相同分为三种情况,而这三种情况又分…… 题解列表 2021年04月12日 0 点赞 3 评论 421 浏览 评分:7.3
字符串对比。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>int main(){ c…… 题解列表 2021年04月10日 0 点赞 0 评论 134 浏览 评分:0.0
python 字符串对比 摘要:解题思路:注意事项:参考代码:str1 = input()str2 = input()if len(str1) != len(str2): print(1)elif len(str1) == l…… 题解列表 2021年04月09日 0 点赞 0 评论 139 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdlib.h>int main(){ char a[20], b[…… 题解列表 2021年03月31日 0 点赞 0 评论 223 浏览 评分:9.9
蓝桥杯基础练习VIP-字符串对比(简洁版) 摘要:```cpp #include using namespace std; string a,b; int panduan(string a,string b) { if(a.size()…… 题解列表 2021年03月29日 0 点赞 0 评论 149 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串的对比 摘要:```java import java.util.ArrayList; import java.util.List; import java.util.Scanner; public …… 题解列表 2021年03月24日 0 点赞 0 评论 197 浏览 评分:9.9
字符串对比 摘要:#include <iostream>#include<cstring>#include<cmath>using namespace std;int main(){ char str1[10],…… 题解列表 2021年03月23日 0 点赞 0 评论 156 浏览 评分:0.0
C************************************ 摘要:#include <stdio.h>#include <string.h>#include <math.h>int main(){ int n1,n2,i,f; char s1[100],…… 题解列表 2021年03月23日 0 点赞 0 评论 203 浏览 评分:0.0
题解 1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 字符串对比 { /** * @param args */ …… 题解列表 2021年03月23日 0 点赞 0 评论 97 浏览 评分:0.0