浅浅苏音


私信TA

用户名:dotcpp0660652

访问量:4375

签 名:

666666

等  级
排  名 603
经  验 4211
参赛次数 15
文章发表 112
年  龄 12
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>

using namespace std;

int tong[1005];

int main()

{

    int n;

    cin>>n;

    for(int i=1;i<=n;i++)

    {

        int a;

        cin>>a;

        if(a%2!=0)

        {

           tong[a]++;

        }

    }

    int flag=0;

    for(int i=1; i<=1004; i++)

    {

      while(tong[i]--)

      {

          if(flag)

          {

          cout<<',';

          }

          cout<<i;

          flag=1;

      }


    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »