问题标题: 酷町堂:1479

1
0
已解决
朱智霖
朱智霖
新手守护
新手守护

为何为错,大神求教

#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
    int n,t,a[10001],i;
    cin>>n;
    for (i=0;i<=10000;i++)
    {
        a[i]=0;
    }
    while (n--)
    {
        cin>>t;
        a[t]++;
    }
    t=0;
    for(i=0;i<=10000;i++) if (a[i]!=0) t++;
    cout<<t<<endl;
    for (int i=0;i<=10000;i++)
    {
        if (a[i]!=0) cout<<i<<' ';
    }
    return 0;
}

 


0
已采纳
宫西诚
宫西诚
修练者
修练者

你好,朱智霖 

你滴数组定义太小了,测试数据稍微蒟蒻了一点···

把数组定义为十万零一;

记得下面循环也要改

0
宫西诚
宫西诚
修练者
修练者

改for (int i=0;i<=10000;i++)三处

定义一处

0
我要回答