码迷,mamicode.com
首页 > 其他好文 > 详细

B1023

时间:2017-10-08 16:52:47      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:nbsp   clu   rom   dex   its   scan   seq   can   array   

#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

标签:nbsp   clu   rom   dex   its   scan   seq   can   array   

原文地址:http://www.cnblogs.com/dusanlang/p/7637648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!