求高手给写下C++一小程序的注释..谢了!~
哪位高手给下面C++程序写一下全的注释吧,作业需要..万分感谢了#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++)
cout < <a[i] < <' ';
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[16]={1,2,2,3,4,4,5,6,6,7,8,8,8,9,10,10};
ARR v(b,16);
v.show();
v.delsame();
v.show();
return 0;
}