题解 2860: 字符串判等

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2860: 字符串判等

摘要:```c #include #include int main() { int i=0,j=0,la,lb,sign=0; char a[100]={'\0'},b[100……

2860基础解法(Python)

摘要:解题思路:全小写(大写)、替换空格、删除冗余注意事项:一定要加strip()参考代码:n1 = input().lower().replace(' ', '').str……

字符串判等C解

摘要:解题思路:注意事项:最好别用==‘ ’参考代码:#include<stdio.h>#include<string.h>int main(){    char a[100],b[100];    int……

字符串判等

摘要:解题思路:判断两字符串相等注意事项:参考代码:#include <stdio.h>#include<string.h>//为使用strlen函数#define N 1000int main() {  ……

2860: 字符串判等

摘要:解题思路:注意事项:参考代码:    #include <bits/stdc++.h>    using namespace std;    typedef long long ll;    int ……

java--study||O.o

摘要:参考代码:import java.util.Arrays; import java.util.Scanner; public class Main  { public static void……

记录相同字符的必会想法

摘要:解题思路:字符串有空格 用getline输入 然后统计相同字符的个数 比较一下注意事项:这里大小写忽略 统一一下即可参考代码:#include<bits/stdc++.h>using namespac……

2860: 字符串判等

摘要:解题思路:注意事项:参考代码:s1 = "".join(input().lower().split()) s2 = "".join(input().lower().split()) if s1 =……

题解 2860: 字符串判等

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    string s,s1="",ss,ss1=""; ……