c++记录transform 摘要:记录transform ` transform(s1.begin(),s1.end(),s1.begin(),::tolower); transform(s2.begin(),s2.end()…… 题解列表 2020年02月28日 0 点赞 0 评论 285 浏览 评分:0.0
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
#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
字符串对比题解 摘要:解题思路:注意事项:参考代码:a=input()b=input()if a==b: print(2)else: if len(a)==len(b): if a.lower()…… 题解列表 2022年03月09日 0 点赞 0 评论 151 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要: #include #include int main() { int i; char s[10],s1[10]; scanf(…… 题解列表 2019年06月14日 0 点赞 0 评论 281 浏览 评分: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 评论 79 浏览 评分: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 评论 251 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2019年02月21日 0 点赞 0 评论 368 浏览 评分:2.0
蓝桥杯基础练习VIP-字符串对比-题解(Java代码)根本不需要根据字符数组来做,简单易懂 摘要: import java.text.DecimalFormat; import java.util.ArrayList; import java.util.List; import java.…… 题解列表 2019年12月05日 0 点赞 0 评论 683 浏览 评分:2.0
蓝桥杯基础练习VIP-字符串对比-题解(C语言代码) 摘要:```c 输入后 先判断长度 长度相等进入while循环 strcmp比较 如果相等输出2 剩下两种情况只要比较对应字符是否等于32如果等于32或0则为3 反之为4 #include"strin…… 题解列表 2019年11月28日 0 点赞 0 评论 565 浏览 评分:6.0