Problem E 排序(難度4)

2021-08-09 14:47:04 字數 629 閱讀 1200

problem e: 排序(難度:4)

description

給你n(n > 1)個小寫字母,按照字母公升序排序後輸出。

input

第一行:n

第二行:n個小寫字母。

output

輸出包括兩行:

若n為偶數,兩行各有

n個字母排序後 一半的字母。

若n為奇數,第一行比第二行多乙個字母。

sample input 5

e d c b a

sample output

a b c

d ehint

#include

#include

intmain()

for(i=0;i

} }

for(i=0;i

else

if(i!=(n-2)/2)

printf("%c ",a[i]); }

else

} else

else

if(i!=(n-1)/2)

printf("%c ",a[i]); }

else

} }

return0;

} //注意下輸出格式

Problem E 成績排序

time limit 1 sec memory limit 128 mb submit 779 solved 635 submit status web board 定義student類 1.資料成員string name和int score表示乙個學生的姓名 成績。2.無參建構函式。3.void ...

Problem E 成績排序

定義student類 資料成員string name和int score表示乙個學生的姓名 成績。無參建構函式。void setstudent string,int 方法,用於設定乙個學生的屬性值。過載 大於運算子 student類的物件a和b的大小關係,a b定義為a.score b.score,...

1951 Problem E 大整數排序

時間限制 1 sec 記憶體限制 32 mb 提交 133 解決 69 提交 狀態 討論版 命題人 外部匯入 對n個長度最長可達到1000的數進行排序。輸入第一行為乙個整數n,1 n 100 接下來的n行每行有乙個數,數的長度範圍為1 len 1000。每個數都是乙個正數,並且保證不包含字首零。可能...