2853: 字符替换 摘要:解题思路:将字符串和字符存储下来后,再通过循环把字符串反复判断并改为题目要求的字符注意事项:循环内需要i从0开始循环,并用strlen()函数把数组最后的值的下标求出,放入循环参考代码:#includ…… 题解列表 2024年07月19日 0 点赞 0 评论 80 浏览 评分:0.0
题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2023年10月04日 0 点赞 0 评论 123 浏览 评分:0.0
2853: 字符替换 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String arg…… 题解列表 2024年02月04日 0 点赞 0 评论 128 浏览 评分:0.0
2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[100000],a,b;int main(){ cin>>s;…… 题解列表 2023年10月28日 0 点赞 0 评论 77 浏览 评分:0.0
2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=10200;char s[N],a,b;int main()…… 题解列表 2023年12月15日 0 点赞 0 评论 87 浏览 评分:0.0
2853: 字符替换 摘要:解题思路:注意事项:参考代码:l = list(input().split())t = l[0].replace(l[1],l[2])print(t)…… 题解列表 2024年08月01日 0 点赞 0 评论 119 浏览 评分:0.0
题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char c[32],l,k;int main(){ cin>>c; …… 题解列表 2024年07月12日 0 点赞 0 评论 98 浏览 评分:0.0
两行解决字符替换 摘要:解题思路:0.0注意事项:奥利给加油!参考代码:n,a,b=map(str,input().split())print(n.replace(a,b))…… 题解列表 2024年01月22日 0 点赞 0 评论 149 浏览 评分:0.0
2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月12日 0 点赞 0 评论 49 浏览 评分:0.0
字符替换(%c会读取空格,要注意,这时候就要善用getchar()处理空格) 摘要:参考代码: ```c #include #include int main() { char a[30]; scanf("%s",a); getchar(); char b,…… 题解列表 2023年09月20日 0 点赞 0 评论 178 浏览 评分:0.0