Py2860-字符串判等 摘要:str1=input().strip().lower().replace('','')str2=inpu…… 题解列表 2025年11月27日 0 点赞 0 评论 39 浏览 评分:0.0
字符串判等 摘要:解题思路:判断两字符串相等注意事项:参考代码:#include <stdio.h>#include<string.h>//为使用strlen函数#define N 1000int main() { …… 题解列表 2024年12月01日 0 点赞 1 评论 428 浏览 评分:9.9
字符串判等,,,,,, 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义四个字符串变量,用于存储输入和处…… 题解列表 2024年11月29日 0 点赞 0 评论 337 浏览 评分:0.0
2860: 字符串判等 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){string s,snew;getline(cin,s);f…… 题解列表 2024年11月03日 0 点赞 0 评论 281 浏览 评分:0.0
2860: 字符串判等 摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()c = a.replace(" ", "")d = b.replace(" ", "")c =…… 题解列表 2024年08月01日 0 点赞 0 评论 653 浏览 评分:0.0
2860: 字符串判等 摘要:解题思路:注意事项:参考代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int …… 题解列表 2024年07月14日 0 点赞 0 评论 261 浏览 评分:9.9
题解 2860: 字符串判等 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s,s1="",ss,ss1=""; …… 题解列表 2024年07月14日 0 点赞 0 评论 311 浏览 评分:9.9
2860: 字符串判等 摘要:```c #include #include int main() { int i=0,j=0,la,lb,sign=0; char a[100]={'\0'},b[100…… 题解列表 2024年04月29日 0 点赞 0 评论 345 浏览 评分:10.0
2860: 字符串判等 摘要:解题思路:注意事项:参考代码:s1 = "".join(input().lower().split()) s2 = "".join(input().lower().split()) if s1 =…… 题解列表 2024年03月25日 0 点赞 0 评论 350 浏览 评分:9.9
字符串判等C解 摘要:解题思路:注意事项:最好别用==‘ ’参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int…… 题解列表 2024年02月15日 0 点赞 0 评论 415 浏览 评分:9.9