C 字元逆序 SDUT

2021-10-01 11:16:15 字數 772 閱讀 3807

time limit: 1000 ms memory limit: 65536 kib

problem description

將乙個字串str的內容顛倒過來,並輸出。str的長度不超過100個字元。

input

輸入包括一行。

第一行輸入的字串。

output

輸出轉換好的逆序字串。

sample input

i am a student

sample output

tneduts a ma i

hint

source

#include

#include

#include

intmain()

printf

("\n");

return0;

}

執行結果:

i am a sutdent

tnedtus a ma i

process returned 0

(0x0

) execution time :

13.039 s

press any key to continue

.

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 ...

字串逆序 c語言

給定乙個含有n個元素的字串,實現逆序。這是個很基礎的問題,實現方式也是很常見的c語言思路。雖然簡單,但是仍然記錄下來。期望 比如char str abcdefg 逆序後為 gfedcba 思路 分別從字串的頭和尾部向中間進發,依次交換頭尾的值,直到在中間相遇。include include void...