C 編寫遞迴函式來使字串逆序

2021-08-18 03:52:14 字數 540 閱讀 5439

題目內容:

編寫函式來使乙個字串逆序輸出,要求必須用遞迴函式。

輸入格式:

乙個字串,不會超過100個字元長,中間可能包含空格

輸出格式:

該字串的逆序

輸入樣例:

hello,everyone

輸出樣例:

enoyreve,olleh

#include#includeusing namespace std;

void rev(char &a,char &b);

void allrev(char s,int n);

int main()

return 0;

}void rev(char &a,char &b)

void allrev(char s,int n)

}

編寫遞迴函式來使字串逆序

題目內容 編寫函式來使乙個字串逆序輸出,要求必須用遞迴函式。輸入格式 乙個字串,不會超過100個字元長,中間可能包含空格 輸出格式 該字串的逆序 輸入樣例 hello,everyone 輸出樣例 enoyreve,olleh 時間限制 500ms記憶體限制 32000kb include inclu...

C 字串逆序

將乙個字串str的內容顛倒過來,並輸出。str的長度不超過100個字元。如 輸入 i am a student 輸出 tneduts a ma i 輸入引數 inputstring 輸入的字串 返回值 輸出轉換好的逆序字串 輸入樣例 i am a student 輸出樣例 tneduts a ma ...

C 字串逆序

將乙個字串str的內容顛倒過來,並輸出。str的長度不超過100個字元。如 輸入 i am a student 輸出 tneduts a ma i 輸入引數 inputstring 輸入的字串 返回值 輸出轉換好的逆序字串 輸入樣例 i am a student 輸出樣例 tneduts a ma ...