时间限制:1 秒
内存限制:32 兆
特殊判题:否
提交:4068
解决:1153
- 题目描述:
-
输入一个字符串,以回车结束(字符串长度<=100)。该字符串由若干个单词组成,单词之间用一个空格隔开,所有单词区分大小写。现需要将其中的某个单词替换成另一个单词,并输出替换之后的字符串。
- 输入:
-
多组数据。每组数据输入包括3行,第1行是包含多个单词的字符串 s,
第2行是待替换的单词a,(长度<=100)
第3行是a将被替换的单词b。(长度<=100)
s, a, b 最前面和最后面都没有空格.
- 输出:
-
每个测试数据输出只有 1 行,将s中所有单词a替换成b之后的字符串。
- 样例输入:
-
You want someone to help you You I
- 样例输出:
-
I want someone to help you
-
代码:
-
c语言版:
-
#include <stdio.h> #include <string.h> int main(){ char s[100], a[100], b[100]; char *temp; while(gets(s)){ scanf("%s", a); scanf("%s", b); temp = strtok(s, " "); while(temp){ if(strcmp(temp, a) == 0){ printf("%s", b); }else{ printf("%s", temp); } temp = strtok(NULL," "); if(temp){ printf(" "); } } printf("\n"); getchar(); } return 0; }
-
java版:
-
import java.util.Scanner; public class Main { public static void main(String args[]){ String s, a, b; Scanner scanner = new Scanner(System.in); while(scanner.hasNext()){ s = scanner.nextLine(); a = scanner.nextLine(); b = scanner.nextLine(); String temp[] = s.split(" "); for(int i = 0; i < temp.length; i++){ if(temp[i].equals(a)){ temp[i] = b; } } for (int i = 0; i < temp.length; i++) { if (i == temp.length - 1) { System.out.println(temp[i]); } else { System.out.print(temp[i] + " "); } } } } }
时间: 2024-12-23 10:25:39