6

输入三个字符后,按各字符的ASCII码从小到大的顺序输出这三个字符。
Input
输入数据有多组,每组占一行,有三个字符组成,之间无空格。
Output
对于每组输入数据,输出一行,字符中间用一个空格分开。
Sample Input
qwe
asd
zxc
Sample Output
e q w
a d s
c x z
问题链接:https://vjudge.net/problem/hdu-2000
问题分析:建立char数组,用while语句使每次输入都能够输出,再用选择排序来重新编排char数组,输出即可
AC通过的C++语言程序如下:

#include 
using namespace std;
int main()
{
    int n = 0, q = 3;
    char p[3] = {};
    while (cin >> p)
    {
        for (int n = 0; n < 3; n++)
        {
            for (int w = n + 1; w < 3; w++)
            {
                if (p[n] > p[w])
                {
                    char cc = p[w];
                    p[w] = p[n];
                    p[n] = cc;
                }
            }
        }
        for (int n = 0; n < 3; n++)
        {
            cout << p[n];
            if (n != 2)cout << " ";
        }
        cout << endl;
    }
    return 0;
}

你可能感兴趣的:(6)