C++版本——常规思路 摘要: #include using namespace std; int main() { string a, b; cin >> …… 题解列表 2021年04月15日 0 点赞 0 评论 146 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>#include<math.h>int main(){ int i…… 题解列表 2021年07月14日 0 点赞 0 评论 123 浏览 评分:0.0
题解 1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:分情况讨论注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s1[100],s2[100]; scanf("%s %…… 题解列表 2021年10月18日 0 点赞 0 评论 117 浏览 评分:0.0
第一次看到使用toupper()函数 摘要:描述:C 库函数 int toupper(int c) 把小写字母转换为大写字母。 函数说明:int toupper(int c); //里面的c是要被转换的字母 返回值: 如果 c 有相…… 题解列表 2021年11月24日 0 点赞 0 评论 613 浏览 评分:9.9
字符串的对比(超简单的c方法 摘要:###所以为什么strcasecmp这个函数可以通过 ###但是stricmp和strcmpi不行呢 ###直接调用几个字符串的函数就好 ```c #include #includ…… 题解列表 2021年12月03日 0 点赞 0 评论 243 浏览 评分:9.9
蓝桥杯-字符串对比 灵活运用String方法(JAVA) 摘要: import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter;…… 题解列表 2022年01月18日 0 点赞 1 评论 73 浏览 评分:9.9
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:n = input() m = input() def bj(a,b): s =0 for i in range(len(a)): …… 题解列表 2022年02月04日 0 点赞 0 评论 88 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:方法一: ```c #include #include #include void main() { char arr[10], brr[10]; scanf("%…… 题解列表 2022年02月09日 0 点赞 0 评论 164 浏览 评分:9.9
蓝桥杯基础练习VIP-字符串对比 题解 摘要:解题思路:先比较长度,再比较内容。不区分大小写的条件可以运用 lower参考代码:str1=input() str2=input() if len(str1)!= len(str2): …… 题解列表 2022年02月24日 0 点赞 0 评论 142 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:通过代码实现相应情况注意事项:参考代码:#include"iostream"#include<cstring>#include<string>using namespace std;stri…… 题解列表 2022年03月01日 0 点赞 0 评论 132 浏览 评分:0.0