B1023
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B1023相关的知识,希望对你有一定的参考价值。
#include<cstdio> int main() { int count[10]; for(int i=0;i<10;i++) { scanf("%d",&count[i]);//input ten digits map number 0~9 } for(int i=1;i<10;i++) { if(count[i]>0) { printf("%d",i);//coz the array index is number 0~9,and the first cant be zero,so for begin with 1 count[i]--; break; } } for(int i=0;i<10;i++) { for(int j=0;j<count[i];j++)//and subsequent,output the numbers from small to big printf("%d",i); } return 0; }
以上是关于B1023的主要内容,如果未能解决你的问题,请参考以下文章