輸入乙個字串,對該字串進行逆序,輸出逆序後的字串。輸入在一行中給出乙個不超過80個字元長度的、以回車結束的非空字串。
在一行中輸出逆序後的字串。
hello world!
!dlrow olleh
1.直接寫
#include
#include
intmain()
2.使用函式
#include
#include
void
reverse
(char a,
int n,
char b)
;int
main()
void
reverse
(char a,
int n,
char b)
3.函式錯誤的寫法
#include
#include
void
reverse
(char a,
int n,
char b)
;int
main()
void
reverse
(char a,
int n,
char b)
10 3 字串逆序 15
輸入乙個字串,對該字串進行逆序,輸出逆序後的字串。輸入格式 輸入在一行中給出乙個不超過80個字元長度的 以回車結束的非空字串。輸出格式 在一行中輸出逆序後的字串。輸入樣例 hello world 輸出樣例 dlrow olleh include include int main int argc,c...
7 65 字串替換 15分
7 65 字串替換 15分 本題要求編寫程式,將給定字串中的大寫英文本母按以下對應規則替換 原字母 對應字母 a zb y c xd w x c y bz a 輸入格式 輸入在一行中給出乙個不超過80個字元 並以回車結束的字串。輸出格式 輸出在一行中給出替換完成後的字串。輸入樣例 only the ...
7 19 字串替換 15分
7 19 字串替換 15分 本題要求編寫程式,將給定字串中的大寫英文本母按以下對應規則替換 原字母對應字母az bycx dw xcyb za輸入在一行中給出乙個不超過80個字元 並以回車結束的字串。輸出在一行中給出替換完成後的字串。only the 11 capital letters are r...