acm1.6

作者: wolfway_d0ff | 来源:发表于2018-12-07 09:44 被阅读0次

    定义一个字符串,以输入做为循环条件,使用三个if来排序三个字符
    输出时依次输出,在字符间加入空格
    ...

    include<iostream>

    using namespace std;
    int main()
    {
    char s[3];
    char a;
    while (cin >> s)
    {
    if (s[0] > s[1])
    {
    a = s[0];
    s[0] = s[1];
    s[1] = a;
    }
    if (s[0] > s[2])
    {
    a = s[0];
    s[0] = s[2];
    s[2] = s[0];
    }
    if (s[1] > s[2])
    {
    a = s[1];
    s[1] = s[2];
    s[2] = a;
    }
    for (int i = 0; i < 3; i++)
    {
    cout << s[i];
    if (i == 2)
    cout << endl;
    else
    cout << " ";
    }
    }
    return 0;
    }
    ...

    相关文章

      网友评论

          本文标题:acm1.6

          本文链接:https://www.haomeiwen.com/subject/nubzcqtx.html