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