給定n個字串,請對n個字串按照字典序排列
input
輸入第一行為乙個正整數n(1≤n≤100),下面n行為n個字串(字串長度≤30),字串中只含有大小寫字母。
output
資料輸出n行,輸出結果為按照字典序排列的字串。
sample input
9cap
tocat
card
twotoo
upboat
boot
sample output
boat
boot
capcard
catto
tootwo
up題解:
//這裡我們引用了string.h庫里的比較函式strcmp()和複製函式strpy()
#include
#include
int main
n個字串按照字典序排列
n個字串按照字典序排列 給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。輸出描述 資料輸出n行,輸出結果為按照字典序排列的字串。輸入例子 9 capto catcard twotoo upb...
n個字串按照字典序排列
題目描述 給定n個字串,請對n個字串按照字典序排列。輸入描述 輸入第一行為乙個正整數n 1 n 1000 下面n行為n個字串 字串長度 100 字串中只含有大小寫字母。輸出描述 資料輸出n行,輸出結果為按照字典序排列的字串。輸入例子 9 cap to cat card two too up boat...
c語言 字串 正序再倒序 python字串
索引 通過下標來獲取元素,從零開始 從左到右為正序,從零開始 從右往左為倒序,最右邊為 1,倒數第二為 2,分片 獲取字串當中的乙個子串行,0,3 不包含3,內可以有乙個數字也可以有三個兩個 倒序輸出,str python print str 1 3 1 no print str 1 nohtyp ...