编写题解 1466: 蓝桥杯基础练习VIP-字符串对比 java 适合小白!!! 摘要:解题思路:解题需要掌握字符串的compareTo()(区分大小写的字符串判断是否相等),compareToIgnoreCase()(不区分大小写的字符串判断是否相等),还有字符串的输入需要用到next…… 题解列表 2022年05月12日 0 点赞 0 评论 121 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:```c #include int main(){ char a[10],b[10]; scanf("%s %s",a,b); int n=strlen(a),m=strlen(b)…… 题解列表 2019年12月20日 0 点赞 0 评论 502 浏览 评分: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
题解 1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 字符串对比 { /** * @param args */ …… 题解列表 2021年03月23日 0 点赞 0 评论 102 浏览 评分:0.0
蓝桥杯基础练习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-字符串对比-题解(C语言代码) 摘要:## 解题思路: 比较两个字符串的形式进行输出,串长不等输出1,串长相等输出2,小写串相等输出3,两串不等输出4。 ## 注意事项: 需要用到string.h头文件的字符串长度函数strlen和…… 题解列表 2020年07月12日 0 点赞 0 评论 260 浏览 评分: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
编写题解 1466: 蓝桥杯基础练习VIP||不用strcmp; 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[2][11] = { 0 }; gets(ar…… 题解列表 2024年03月26日 0 点赞 0 评论 86 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:```c #include #include #include int main() { char a[100],b[100]; int i,j; scanf("%s%s",a…… 题解列表 2020年02月09日 0 点赞 0 评论 261 浏览 评分:0.0
字符串对比。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>int main(){ c…… 题解列表 2021年04月10日 0 点赞 0 评论 139 浏览 评分:0.0