蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>#include<math.h>int main(){ int i…… 题解列表 2021年07月14日 0 点赞 0 评论 168 浏览 评分: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 评论 357 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:思路: 1.接收两个字符串,对两个字符串的长度进行比较,如果不相同则输出1,否则对两个字符串进行比较,两个完全相同则输出2,再否则如果大小写匹配,输出3,上述情况都不符合则输出4. 参考代码:…… 题解列表 2020年02月19日 0 点赞 1 评论 514 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 迷惑的20%,以后再说吧() 摘要:#include #include #include #include int main() { char a[1000], b[1000]; gets(a); gets…… 题解列表 2020年02月22日 0 点赞 0 评论 340 浏览 评分: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 评论 404 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:## 解题思路: 比较两个字符串的形式进行输出,串长不等输出1,串长相等输出2,小写串相等输出3,两串不等输出4。 ## 注意事项: 需要用到string.h头文件的字符串长度函数strlen和…… 题解列表 2020年07月12日 0 点赞 0 评论 328 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char a[11],b[11]; cha…… 题解列表 2020年08月05日 0 点赞 0 评论 458 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:这题就4种情况:按照对应的情况输出即可。 ```cpp #include #include #include using namespace std; string tolower(s…… 题解列表 2020年10月28日 0 点赞 0 评论 368 浏览 评分: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 评论 250 浏览 评分:0.0
字符串对比。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>int main(){ c…… 题解列表 2021年04月10日 0 点赞 0 评论 189 浏览 评分:0.0