#include<iostream>
using namespace std;
class ARR
{
int m;
int a[100];
public:
ARR(int x[],int size)
{
m=size;
for(int i=0;i<m;i++)
a[i]=x[i];
}
void delsame();
void show()
{
for(int i=0;i<m;i++)//I没有定义,加int定义
{
cout<<a[i]<<"\t";
if((i+1)%5==0)
cout<<endl;//不是edl,应该是endl
}
cout<<endl;
}
};
void ARR::delsame()
{
int i,j;
for(i=0;i<m-1;i++)
{
if(a[i]=a[i+1])
{
for(j=i+1;j<m-1;j++)
{
a[j]=a[j+1];
}
m--;
i--;
}
}
}
int main()
{
int b[17]={1,2,2,3,3,4,4,5,6,6,7,7,8,8,9,10,10};//初始化数组溢出,由16改成17
ARR v(b,sizeof(b)/sizeof(b[0]));
v.show();
v.delsame();
v.show();
return 0;
}
using namespace std;
class ARR
{
int m;
int a[100];
public:
ARR(int x[],int size)
{
m=size;
for(int i=0;i<m;i++)
a[i]=x[i];
}
void delsame();
void show()
{
for(int i=0;i<m;i++)//I没有定义,加int定义
{
cout<<a[i]<<"\t";
if((i+1)%5==0)
cout<<endl;//不是edl,应该是endl
}
cout<<endl;
}
};
void ARR::delsame()
{
int i,j;
for(i=0;i<m-1;i++)
{
if(a[i]=a[i+1])
{
for(j=i+1;j<m-1;j++)
{
a[j]=a[j+1];
}
m--;
i--;
}
}
}
int main()
{
int b[17]={1,2,2,3,3,4,4,5,6,6,7,7,8,8,9,10,10};//初始化数组溢出,由16改成17
ARR v(b,sizeof(b)/sizeof(b[0]));
v.show();
v.delsame();
v.show();
return 0;
}