蓝桥杯基础练习VIP-字符串对比(C语言) 摘要:#include<stdio.h> #include<ctype.h>//tolower函数引用所需的头文件 #include<string.h> int main() { char st…… 题解列表 2023年01月06日 0 点赞 0 评论 65 浏览 评分:0.0
字符串对比 摘要:参考代码1#include<iostream> #include<math.h> #include<string.h> #include<stdlib.h> using namespace s…… 题解列表 2022年09月18日 0 点赞 0 评论 142 浏览 评分:9.9
小南解题---字符串对比--64ms 摘要:a=input()b=input() if len(a)==len(b): if a==b: print(2) else: if a.upper()==b.up…… 题解列表 2022年08月27日 0 点赞 0 评论 174 浏览 评分:0.0
#c++字符串对比 transform(s.begin(),s.end(),s.begin(),::toupper); //全部转成大写 摘要:```cpp #include using namespace std; int main() { string s,ss; cin>>s>>ss; if(s.size()!=ss…… 题解列表 2022年07月28日 0 点赞 0 评论 289 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int a,b,i,flag=0,be=0,de=0,k=0;…… 题解列表 2022年06月24日 0 点赞 0 评论 69 浏览 评分:0.0
编写题解 1466: 蓝桥杯基础练习VIP-字符串对比 java 适合小白!!! 摘要:解题思路:解题需要掌握字符串的compareTo()(区分大小写的字符串判断是否相等),compareToIgnoreCase()(不区分大小写的字符串判断是否相等),还有字符串的输入需要用到next…… 题解列表 2022年05月12日 0 点赞 0 评论 116 浏览 评分:0.0
转换字符【c++】 摘要:```cpp #include using namespace std; int main(){ string s1, s2, s3 = "", s4 =""; cin >> …… 题解列表 2022年04月07日 0 点赞 0 评论 143 浏览 评分:0.0
巧用upper判断 摘要:解题思路:注意事项:参考代码:a=input()b=input()c=a.upper()d=b.upper()if len(a)!=len(b): print('1')else:…… 题解列表 2022年04月06日 0 点赞 0 评论 119 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++详解) 摘要:参考代码: ```cpp #include #include #include #include #include #include #include #include…… 题解列表 2022年04月02日 0 点赞 0 评论 259 浏览 评分:9.9
编写题解 1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main(){ string st…… 题解列表 2022年03月21日 0 点赞 0 评论 162 浏览 评分:0.0