/*Copyright(c)2014,烟台大学计算机学院
*Allrights reserved.
*文件名称:MADE2.cpp
*作 者:张生栋
*完成日期:2015年4月3日
*问题描述:程序阅读
*输入描述:无
*输出描述: 略
*版 本 号:v1.0
*/
#include <iostream>
using namespace std;
class toy
{
public:
toy(int q, int p)
{
quan = q;
price = p;
}
int get_quan()
{
return quan;
}
int get_price()
{
return price;
}
private:
int quan, price;
};
int main()
{
toy op[3][2]=
{
toy(10,20),toy(30,48),
toy(50,68),toy(70,80),
toy(90,16),toy(11,120)
};
int i;
for (i=0; i<3; i++)
{
cout<<op[i][0].get_quan()<<",";
cout<<op[i][0].get_price()<<"\n";
cout<<op[i][1].get_quan()<<",";
cout<<op[i][1].get_price()<<"\n";
}
cout<<"\n";
return 0;
}
运行结果: