题解 2864: 单词替换

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

筛选

用“字符的二维数组”

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

2864: 单词替换(python)

摘要:解题思路:注意事项:参考代码:#注意去掉前导后导空格 #先把字符串转为列表,直接用replace会有问题(比如句子中的want可能ant会被替换) s = list(input().strip()……

2864: 单词替换

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

2864: 单词替换

摘要:```cpp #include #include using namespace std; int main() { int n=0; char s[101][101];……

2864: 单词替换(输入与指针)

摘要:解题思路:这道题用c++的cin和c语言的%s做都很简单,因为cin输入和%s输入都是遇到空格就停止,所以在输入的时候就实现了单词分隔。当然 c++的string类型更方便一点,因为string类型可……

2864: 单词替换 STL版

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <sstream> // #include <cstdio> // #include <algorithm……

正则表达式--study||O.o

摘要:注意事项:题目有问题,测试样例并不全是英文单词,还有特殊符号!!!参考代码:import java.util.Scanner; public class Main  { public stat……

2864: 单词替换

摘要:解题思路:1.读入一行字符串s、待替换单词a和替换单词b。2.使用stringstream将字符串s分割成单词,并依次判断每个单词是否为待替换单词a,若是,则输出替换单词b;否则输出原单词。3.输出替……

单词替换(优解)

摘要:解题思路:看下面↓注意事项:借鉴用,不要盲目的抄参考代码:#include<iostream>#include<cstring>using namespace std;int main(){   in……

单词替换题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.>int main(){    char a[101][101]={&#39;\0&#39;},ch,b……