在一本通官网AC 在洛谷60pts???
查看原帖
在一本通官网AC 在洛谷60pts???
1618096
wdr2024楼主2025/8/5 14:21

一本通AC记录:

MY CODE

#include <bits/stdc++.h>
using namespace std;
int main(){
	string s,a,b;
	getline(cin,s);
	cin >> a >> b; 
	s+=' '; 
	string t,w;
	for(int i=0;s[i];i++){
		if(s[i]==' '){
			if(w==a){
				t+=b;
				t+=' ';
			}else{
				t+=w;
				t+=' ';
			}
			w="";
		}else{
			w+=s[i];
		}
	}
	cout << t;
	return 0;
}

2025/8/5 14:21
加载中...