輸入一個英文句子,翻轉句子中單詞的順序,但單詞內字符的順序不變。(筆試題) 句子中單詞以空格符隔開。爲簡單起見,沒有標點符號。 例如輸入「I am a student」,則輸出「student a

輸入一個英文句子,翻轉句子中單詞的順序,但單詞內字符的順序不變。(筆試題) 句子中單詞以空格符隔開。爲簡單起見,沒有標點符號。 例如輸入「I am a student」,則輸出「student a am I」 #include <stdio.h> #include <string.h> void Reverse(char * str, int beg, int end); int main() {
相關文章
相關標籤/搜索