POJ 3981 字串替換

2021-09-06 05:33:31 字數 778 閱讀 2655

字串替換

time limit:1000ms

memory limit:65536k

total submissions:7290

accepted:3451

description

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

input

輸入包含多行資料

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

資料以eof結束

output

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

sample input

you are what you do
sample output

we are what we do
第一:

#includechar str[1002];

int main()

else

printf("\0");

printf("\n");

} return 0;

}第二:

#include#includechar str[1002];

int main()

else

printf("\0"); //必須是雙引號

printf("\n");

} return 0;

}

POJ 3981 字串替換

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

POJ3981 字串替換

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

POJ3981字串替換

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