#include <iostream>
#include "wanghuali.h"
using namespace std;
int main(int argc, char** argv) {
    wanghuali n;
    n.set();
    n.get();
    return 0;
}
class wanghuali{
    private:
    int m=10;
    int list[10000]={0};
    int a;    
    public:
        void set(){
        for(int i=0;i<m;i++){
            std::cin>>a;
            list[a]++;
        }
    }
    void get(){
        for(int i=0;i<10000;i++){
            if(list[i]!=0){
                for(int j=0;j<list[a];j++){
                    std::cout<<i<<" ";
                }
            }    
        }
    }
};

 

posted on 2024-01-28 11:20  爱吃泡面的皮卡  阅读(4)  评论(0编辑  收藏  举报