其他分享
首页 > 其他分享> > 1239:统计数字

1239:统计数字

作者:互联网

1239:统计数字

 

 

using namespace std;
int a[10001],n,js=1,tot=1;
int main()
{
    cin>>n;
    for(int i=1;i<=n;i++)
      cin>>a[i];
    sort(a+1,a+n+1);
    while(tot<=n)
    {
        int s=a[tot],k;
        k=tot; //保存为增值的tot 
        while(s==a[tot]) //统计相同数 
              tot++;
        printf("%d ",a[tot-1]);
        printf("%d\n",tot-k);//相减为a[tot-1]出现次数 
     }
     return 0;
 }

 

标签:std,sort,int,1239,tot,统计数字
来源: https://www.cnblogs.com/xxas2015/p/16245711.html