题解 2860: 字符串判等

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

筛选

字符串判等C解

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

2860: 字符串判等

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

2860: 字符串判等

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

题解 2860: 字符串判等

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

2860: 字符串判等

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

2860: 字符串判等

摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()c = a.replace(" ", "")d = b.replace(" ", "")c =……

2860: 字符串判等

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

字符串判等,,,,,,

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){     // 定义四个字符串变量,用于存储输入和处……

字符串判等

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