c++开拓 » 输入两个集合中元素并显示[c++]
时间:2010-09-21 来源:云之迦楼罗
发表于:2006-1-23 13:35:57
怎么在最新链接里面设置项目呀,增加不了呀.我 crazyrabbit 发表于:2006-3-21 22:45:03
#include <iostream.h>
#include <string.h>
class set
{
int a[10];
public:
int m;
void seta(int ele,int n){a[n]=ele;}
void disp();
};
void set::disp()
{
for(m=0;m<=9;m++)
cout<<a[m]<<" ";
}
void main()
{
set b;
set c;
int x;
int n;
cout<<"Please input B:";
for(n=0;n<=9;n++)
{
cin>>x;
b.seta(x,n);
}
b.disp();
cout<<"Please input C:";
for(n=0;n<=9;n++)
{
cin>>x;
c.seta(x,n);
}
b.disp();
cout<<endl;
c.disp();
}
海啸南风,你姐姐我qq有问题哦!
出问题了。八成弄不好啦,
怎么在最新链接里面设置项目呀,增加不了呀.我 crazyrabbit 发表于:2006-3-21 22:45:03
相关阅读 更多 +