题解 2853: 字符替换

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

筛选

题解 2853字符替换

摘要:解题思路:注意事项:要看输入格式要求,一口气输入就要一口气输入 字符串和字符的输入输出方式参考代码:#include<stdio.h>#include<string.h>int main(){    ……

2853: 字符替换

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

2853: 字符替换

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String arg……

题解 2853: 字符替换

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main {     public static void main(String[……

2853: 字符替换

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=10200;char s[N],a,b;int main()……

2853: 字符替换

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[100000],a,b;int main(){    cin>>s;……

2853: 字符替换 c++ (string)

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