4 条题解
-
1
#include<sstream> using namespace std; string s,a,b; void Output() { istringstream sin(s); string temp; while(sin>>temp) { if(temp==a) { cout<<b<<' '; } else { cout<<temp<<' '; } } return ; } void Input() { getline(cin,s); getline(cin,a); getline(cin,b); return ; } int main() { Input(); Output(); return 0; }
信息
- ID
- 1567
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- (无)
- 递交数
- 20
- 已通过
- 15
- 上传者