蓝桥杯基础练习VIP-字符串对比 (C++代码) 摘要:#include<iostream> #include<string> using namespace std; int main(){ string str1,str2; cin>>s…… 题解列表 2018年03月20日 0 点赞 0 评论 1035 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比(简洁版) 摘要:```cpp #include using namespace std; string a,b; int panduan(string a,string b) { if(a.size()…… 题解列表 2021年03月29日 0 点赞 0 评论 153 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:一步错补补错 int judge2(char a[],char b[]) { int lena=strlen(a); for(int i=0;i='A'&&a[i]='A'&…… 题解列表 2020年03月19日 0 点赞 0 评论 282 浏览 评分:0.0
字符串对比题解 摘要:解题思路:注意事项:参考代码:a=input()b=input()if a==b: print(2)else: if len(a)==len(b): if a.lower()…… 题解列表 2022年03月09日 0 点赞 0 评论 158 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要: 这个题目主要区分好条件,就很简单了,这个代码是比较通俗易懂,但是比较长,适合萌新。 #include #include int main() { …… 题解列表 2019年11月12日 0 点赞 0 评论 436 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int is_yiy(char * a,char * b,int n){int i;for(i=0;…… 题解列表 2018年01月25日 1 点赞 0 评论 864 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:```c #include #include #include int main() { char a[11],b[11]; int i,len,type=0;//type作为标记,…… 题解列表 2020年02月18日 0 点赞 0 评论 271 浏览 评分: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 评论 66 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路: 分别对这四种情况,依次进行判断就好啦。参考代码:#include <stdio.h> int main(){ char s1[11],s2[11]; int len1,len…… 题解列表 2019年01月28日 0 点赞 1 评论 196 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:通过代码实现相应情况注意事项:参考代码:#include"iostream"#include<cstring>#include<string>using namespace std;stri…… 题解列表 2022年03月01日 0 点赞 0 评论 136 浏览 评分:0.0