2864: 单词替换 摘要:解题思路:1.读入一行字符串s、待替换单词a和替换单词b。2.使用stringstream将字符串s分割成单词,并依次判断每个单词是否为待替换单词a,若是,则输出替换单词b;否则输出原单词。3.输出替…… 题解列表 2023年04月21日 0 点赞 0 评论 115 浏览 评分:9.9
2864: 单词替换(python) 摘要:解题思路:注意事项:参考代码:#注意去掉前导后导空格 #先把字符串转为列表,直接用replace会有问题(比如句子中的want可能ant会被替换) s = list(input().strip()…… 题解列表 2023年02月26日 0 点赞 1 评论 144 浏览 评分:9.9
2864: 单词替换 STL版 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <sstream> // #include <cstdio> // #include <algorithm…… 题解列表 2023年02月22日 0 点赞 0 评论 113 浏览 评分:9.9
用“字符的二维数组” 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n = 0; char a[105][105…… 题解列表 2023年02月16日 0 点赞 0 评论 127 浏览 评分:9.9
2864: 单词替换 摘要:```cpp #include #include using namespace std; int main() { int n=0; char s[101][101];…… 题解列表 2023年01月10日 0 点赞 0 评论 310 浏览 评分:9.9
单词替换题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.>int main(){ char a[101][101]={'\0'},ch,b…… 题解列表 2023年01月04日 0 点赞 0 评论 305 浏览 评分:9.6
2864: 单词替换 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int n = 0; char s[10…… 题解列表 2022年11月07日 0 点赞 0 评论 325 浏览 评分:7.3