POJ 3981 字串替換

2021-06-10 07:20:48 字數 618 閱讀 9997

字串替換

time limit:1000ms

memory limit:65536k

total submissions:7501

accepted:3560

description

編寫乙個c程式實現將字串中的所有"you"替換成"we"

input

輸入包含多行資料 

每行資料是乙個字串,長度不超過1000 

資料以eof結束

output

對於輸入的每一行,輸出替換後的字串

sample input

you are what you do
sample output

we are what we do

二、參考**

#include #include using namespace std;

int main()

cout << str << endl;

}return 0;

}

POJ3981 字串替換

字串替換 time limit 1000ms memory limit 65536k total submissions 9285 accepted 4438 description 編寫乙個c程式實現將字串中的所有 you 替換成 we input 輸入包含多行資料 每行資料是乙個字串,長度不超過...

POJ 3981 字串替換

字串替換 time limit 1000ms memory limit 65536k total submissions 7290 accepted 3451 description 編寫乙個c程式實現將字串中的所有 you 替換成 we input 輸入包含多行資料 每行資料是乙個字串,長度不超過...

POJ3981字串替換

字串替換問題 傳送門 description 編寫乙個c程式實現將字串中的所有 you 替換成 we input 輸入包含多行資料 每行資料是乙個字串,長度不超過1000 資料以eof結束 output 對於輸入的每一行,輸出替換後的字串 sample input you are what you ...