problem description
輸入三個字元後,按各字元的ascii碼從小到大的順序輸出這三個字元。
input
輸入資料有多組,每組佔一行,有三個字元組成,之間無空格。
output
對於每組輸入資料,輸出一行,字元中間用乙個空格分開。
sample input
qweasd
zxcsample output
e q w
a d s
c x z
方法一:列出所有可能性,在有多個並列、情況不交叉的條件需要一一處理,可以用else if語句
#include int main()
return 0;
}
杭電2000 ASCII碼排序
用乙個字元陣列就可以搞定!problem description 輸入三個字元後,按各字元的ascii碼從小到大的順序輸出這三個字元。input 輸入資料有多組,每組佔一行,有三個字元組成,之間無空格。output 對於每組輸入資料,輸出一行,字元中間用乙個空格分開。sample input qwe...
杭電 2000 ASCII碼排序
problem description 輸入三個字元後,按各字元的ascii碼從小到大的順序輸出這三個字元。input 輸入資料有多組,每組佔一行,有三個字元組成,之間無空格。output 對於每組輸入資料,輸出一行,字元中間用乙個空格分開。sample input qweasd zxcsample...
杭電 2000 ASCII碼排序 c
problem description 輸入三個字元後,按各字元的ascii碼從小到大的順序輸出這三個字元。input 輸入資料有多組,每組佔一行,有三個字元組成,之間無空格。output 對於每組輸入資料,輸出一行,字元中間用乙個空格分開。sample input qweasd zxcsample...