#19439: AC 兩種方法


ohmygod0193 (2.7182818284590450907955982984...)

學校 : 國立臺灣師範大學附屬高級中學
編號 : 75658
來源 : [223.137.198.149]
最後登入時間 :
2024-01-28 12:04:13
c659. 連接詞 -- 板橋高中python教學題 | From: [223.137.132.74] | 發表日期 : 2019-09-30 20:12

cin and getline

#include<bits/stdc++.h>
using namespace std;
int main()
{
string x,y;
cin>>y;
getline(cin,x);

for(int i=1;i<x.length();i++)
{
if(x[i]==' ') cout<<' '<<y<<' ';
else cout<<x[i];
}


}

 

getline and substr

#include<bits/stdc++.h>
using namespace std;
int main()
{
string x,y;
getline(cin,x);
int k=x.find(' ');
y=x.substr(0,k);
for(int i=k+1;i<x.length();i++)
{
if(x[i]==' ') cout<<' '<<y<<' ';
else cout<<x[i];
}


}

 
ZeroJudge Forum